snapshot_comments
2 rows where snapshot_pk = 66
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 |
|---|---|---|---|---|---|---|---|---|---|
| 110 | 66 66 | 1 | 108255392679 | 6305822482 | 2025-08-02T05:17:16Z | Attended By Officer | Dr D Ranjith I/C | cleared | {"id": "108255392679", "mobile_number": "6305822482", "posted_by": "Dr D Ranjith I/C", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "02-AUG-2025 10:47:16"} |
| 111 | 66 66 | 2 | 108255392679 | 7997951602 | 2025-08-01T11:11:31Z | Open | Uppal | not my wing | {"id": "108255392679", "mobile_number": "7997951602", "posted_by": "Uppal", "remarks": "not my wing", "status": "Open", "time_stamp": "01-AUG-2025 16:41:31"} |
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)
);