snapshot_comments
3 rows where snapshot_pk = 98
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, remarks, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 169 | 98 98 | 1 | 111255552248 | 9154686556 | 2025-11-05T00:19:19Z | Attended By Officer | T.Sowmya | rectify | {"id": "111255552248", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": "rectify", "status": "Attended By Officer", "time_stamp": "05-NOV-2025 05:49:19"} |
| 170 | 98 98 | 2 | 111255552248 | 9989392528 | 2025-11-04T04:20:19Z | Open | Call Centre | Not Satisfied | {"id": "111255552248", "mobile_number": "9989392528", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "04-NOV-2025 09:50:19"} |
| 171 | 98 98 | 3 | 111255552248 | 9154686556 | 2025-11-03T08:08:40Z | Attended By Officer | T.Sowmya | rectify | {"id": "111255552248", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": "rectify", "status": "Attended By Officer", "time_stamp": "03-NOV-2025 13:38:40"} |
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)
);