snapshot_comments
3 rows where snapshot_pk = 33
This data as json, CSV (advanced)
Suggested facets: mobile_number, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 51 | 33 33 | 1 | 103255140329 | - | 2025-03-05T09:28:33Z | - | Call Centre | Not Satisfied | {"id": "103255140329", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "-", "time_stamp": "05-MAR-2025 14:58:33"} |
| 52 | 33 33 | 2 | 103255140329 | 8074002645 | 2025-03-01T07:50:08Z | Attended By Officer | Dr K.Nagarjuna I/c | attended | {"id": "103255140329", "mobile_number": "8074002645", "posted_by": "Dr K.Nagarjuna I/c", "remarks": "attended", "status": "Attended By Officer", "time_stamp": "01-MAR-2025 13:20:08"} |
| 53 | 33 33 | 3 | 103255140329 | 8074002645 | 2025-03-01T00:55:56Z | Under Process | Dr K.Nagarjuna I/c | under process | {"id": "103255140329", "mobile_number": "8074002645", "posted_by": "Dr K.Nagarjuna I/c", "remarks": "under process", "status": "Under Process", "time_stamp": "01-MAR-2025 06:25:56"} |
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)
);