snapshot_comments
3 rows where snapshot_pk = 18
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 |
|---|---|---|---|---|---|---|---|---|---|
| 39 | 18 18 | 1 | 109255451028 | 9989930592 | 2025-09-08T05:56:51Z | Attended By Officer | B.Swapna | closed | {"id": "109255451028", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "08-SEP-2025 11:26:51"} |
| 40 | 18 18 | 2 | 109255451028 | 8247761125 | 2025-09-04T10:33:36Z | Open | Call Centre | Not Satisfied | {"id": "109255451028", "mobile_number": "8247761125", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "04-SEP-2025 16:03:36"} |
| 41 | 18 18 | 3 | 109255451028 | 9989930592 | 2025-09-02T13:14:25Z | Attended By Officer | B.Swapna | closed | {"id": "109255451028", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "02-SEP-2025 18:44:25"} |
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)
);