snapshot_comments
3 rows where snapshot_pk = 51
This data as json, CSV (advanced)
Suggested facets: comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 111 | 51 51 | 1 | 106255287947 | 9849743233 | 2025-06-12T06:15:16Z | Closed | G AMARENDER REDDY | - | {"id": "106255287947", "mobile_number": "9849743233", "posted_by": "G AMARENDER REDDY", "remarks": "-", "status": "Closed", "time_stamp": "12-JUN-2025 11:45:16"} |
| 112 | 51 51 | 2 | 106255287947 | - | 2025-06-05T10:54:27Z | - | Call Centre | Satisfied | {"id": "106255287947", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "05-JUN-2025 16:24:27"} |
| 113 | 51 51 | 3 | 106255287947 | 8500452291 | 2025-06-03T06:42:28Z | Attended By Officer | Smt.V.Praveena | cleared | {"id": "106255287947", "mobile_number": "8500452291", "posted_by": "Smt.V.Praveena", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "03-JUN-2025 12:12:28"} |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE snapshot_comments (
comment_pk INTEGER PRIMARY KEY,
snapshot_pk INTEGER NOT NULL REFERENCES complaint_snapshots(snapshot_pk) ON DELETE CASCADE,
ordinal INTEGER NOT NULL,
complaint_id TEXT NOT NULL,
mobile_number TEXT NOT NULL,
comment_timestamp TEXT NOT NULL,
status_text TEXT NOT NULL,
posted_by TEXT NOT NULL,
remarks TEXT NOT NULL,
raw_comment_json TEXT NOT NULL,
UNIQUE(snapshot_pk, ordinal)
);