snapshot_comments
4 rows where snapshot_pk = 13
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 42 | 13 13 | 1 | 110255503082 | 9154296619 | 2025-10-06T12:34:52Z | Attended By Officer | B.Ravindra | re | {"id": "110255503082", "mobile_number": "9154296619", "posted_by": "B.Ravindra", "remarks": "re", "status": "Attended By Officer", "time_stamp": "06-OCT-2025 18:04:52"} |
| 43 | 13 13 | 2 | 110255503082 | 9398175780 | 2025-10-06T05:18:02Z | Open | Call Centre | Not Satisfied | {"id": "110255503082", "mobile_number": "9398175780", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "06-OCT-2025 10:48:02"} |
| 44 | 13 13 | 3 | 110255503082 | 9154296619 | 2025-10-05T04:36:47Z | Attended By Officer | B.Ravindra | rectified | {"id": "110255503082", "mobile_number": "9154296619", "posted_by": "B.Ravindra", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "05-OCT-2025 10:06:47"} |
| 45 | 13 13 | 4 | 110255503082 | 9154296619 | 2025-10-04T03:19:06Z | Open | B.Ravindra | 2 | {"id": "110255503082", "mobile_number": "9154296619", "posted_by": "B.Ravindra", "remarks": "2", "status": "Open", "time_stamp": "04-OCT-2025 08:49:06"} |
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)
);