snapshot_comments
3 rows where snapshot_pk = 3
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 |
|---|---|---|---|---|---|---|---|---|---|
| 3 | 3 3 | 1 | 107255337658 | 9989930669 | 2025-07-01T06:00:48Z | Attended By Officer | Ajaj Kumar | close | {"id": "107255337658", "mobile_number": "9989930669", "posted_by": "Ajaj Kumar", "remarks": "close", "status": "Attended By Officer", "time_stamp": "01-JUL-2025 11:30:48"} |
| 4 | 3 3 | 2 | 107255337658 | 8309293834 | 2025-07-01T04:38:59Z | Open | Murali krishna | Payment not updated and still showing to pay . | {"id": "107255337658", "mobile_number": "8309293834", "posted_by": "Murali krishna", "remarks": "Payment not updated and still showing to pay .", "status": "Open", "time_stamp": "01-JUL-2025 10:08:59"} |
| 5 | 3 3 | 3 | 107255337658 | 9989930669 | 2025-07-01T03:59:04Z | Attended By Officer | Ajaj Kumar | close | {"id": "107255337658", "mobile_number": "9989930669", "posted_by": "Ajaj Kumar", "remarks": "close", "status": "Attended By Officer", "time_stamp": "01-JUL-2025 09:29:04"} |
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)
);