snapshot_comments
3 rows where snapshot_pk = 65
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 |
|---|---|---|---|---|---|---|---|---|---|
| 115 | 65 65 | 1 | 111255552216 | 9703203699 | 2025-11-16T09:12:25Z | Closed | Call Centre | Satisfied | {"id": "111255552216", "mobile_number": "9703203699", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "Closed", "time_stamp": "16-NOV-2025 14:42:25"} |
| 116 | 65 65 | 2 | 111255552216 | 7997951620 | 2025-11-05T04:13:44Z | Attended By Officer | Serilingampally | clear | {"id": "111255552216", "mobile_number": "7997951620", "posted_by": "Serilingampally", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "05-NOV-2025 09:43:44"} |
| 117 | 65 65 | 3 | 111255552216 | 8125218065 | 2025-11-01T03:04:39Z | Open | Dr. Srikanth Reddy | garbage | {"id": "111255552216", "mobile_number": "8125218065", "posted_by": "Dr. Srikanth Reddy", "remarks": "garbage", "status": "Open", "time_stamp": "01-NOV-2025 08:34:39"} |
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)
);