snapshot_comments
3 rows where snapshot_pk = 31
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 |
|---|---|---|---|---|---|---|---|---|---|
| 65 | 31 31 | 1 | 109255451041 | 9948554619 | 2025-09-24T09:54:16Z | Closed | Call Centre | Not Satisfied | {"id": "109255451041", "mobile_number": "9948554619", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Closed", "time_stamp": "24-SEP-2025 15:24:16"} |
| 66 | 31 31 | 2 | 109255451041 | 9515165713 | 2025-09-02T11:01:40Z | Attended By Officer | Dr .G .Rajnikanth | cleared | {"id": "109255451041", "mobile_number": "9515165713", "posted_by": "Dr .G .Rajnikanth", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "02-SEP-2025 16:31:40"} |
| 67 | 31 31 | 3 | 109255451041 | 9100955064 | 2025-09-02T01:27:03Z | Open | PRAVEEN | complaint belongs to 61 Attapur ward | {"id": "109255451041", "mobile_number": "9100955064", "posted_by": "PRAVEEN", "remarks": "complaint belongs to 61 Attapur ward", "status": "Open", "time_stamp": "02-SEP-2025 06:57:03"} |
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)
);