snapshot_comments
3 rows where snapshot_pk = 80
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 |
|---|---|---|---|---|---|---|---|---|---|
| 140 | 80 80 | 1 | 111255552232 | 9989930592 | 2025-11-13T13:35:52Z | Attended By Officer | B.Swapna | closed | {"id": "111255552232", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "13-NOV-2025 19:05:52"} |
| 141 | 80 80 | 2 | 111255552232 | 7396163919 | 2025-11-10T08:47:59Z | Open | Call Centre | Not Satisfied | {"id": "111255552232", "mobile_number": "7396163919", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "10-NOV-2025 14:17:59"} |
| 142 | 80 80 | 3 | 111255552232 | 9989930592 | 2025-11-06T05:53:08Z | Attended By Officer | B.Swapna | closed | {"id": "111255552232", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "06-NOV-2025 11:23:08"} |
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)
);