snapshot_comments
3 rows where snapshot_pk = 10
This data as json, CSV (advanced)
Suggested facets: status_text, remarks, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 33 | 10 10 | 1 | 101265640098 | 7331189192 | 2026-02-25T05:21:17Z | Attended By Officer | V.Thirumal reddy | rectified | {"id": "101265640098", "mobile_number": "7331189192", "posted_by": "V.Thirumal reddy", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "25-FEB-2026 10:51:17"} |
| 34 | 10 10 | 2 | 101265640098 | 8125746645 | 2026-01-06T07:43:02Z | Open | Call Centre | Not Satisfied | {"id": "101265640098", "mobile_number": "8125746645", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "06-JAN-2026 13:13:02"} |
| 35 | 10 10 | 3 | 101265640098 | 9154295249 | 2026-01-05T10:35:08Z | Attended By Officer | Sai Chandana | rectified | {"id": "101265640098", "mobile_number": "9154295249", "posted_by": "Sai Chandana", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "05-JAN-2026 16:05: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)
);