snapshot_comments
2 rows where snapshot_pk = 90
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 |
|---|---|---|---|---|---|---|---|---|---|
| 143 | 90 90 | 1 | 101255052511 | 8374865307 | 2025-01-02T02:20:48Z | Attended By Officer | Dr. Bharghava Narayana | clear | {"id": "101255052511", "mobile_number": "8374865307", "posted_by": "Dr. Bharghava Narayana", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "02-JAN-2025 07:50:48"} |
| 144 | 90 90 | 2 | 101255052511 | 9154909250 | 2025-01-01T18:14:08Z | Open | Dr.Md Irshad Iqbal | it's Partains to Circle No 18 plz contact | {"id": "101255052511", "mobile_number": "9154909250", "posted_by": "Dr.Md Irshad Iqbal", "remarks": "it's Partains to Circle No 18 plz contact", "status": "Open", "time_stamp": "01-JAN-2025 23:44: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)
);