snapshot_comments
3 rows where snapshot_pk = 47
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 |
|---|---|---|---|---|---|---|---|---|---|
| 105 | 47 47 | 1 | 101265640141 | 7337557252 | 2026-03-14T03:28:01Z | Attended By Officer | S. Shravani | rectified Sir thankyou timer issue | {"id": "101265640141", "mobile_number": "7337557252", "posted_by": "S. Shravani", "remarks": "rectified Sir thankyou timer issue", "status": "Attended By Officer", "time_stamp": "14-MAR-2026 08:58:01"} |
| 106 | 47 47 | 2 | 101265640141 | 9866034276 | 2026-03-12T08:03:56Z | Open | Call Centre | Not Satisfied | {"id": "101265640141", "mobile_number": "9866034276", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "12-MAR-2026 13:33:56"} |
| 107 | 47 47 | 3 | 101265640141 | 7337557252 | 2026-03-11T10:30:28Z | Attended By Officer | S. Shravani | rectified Sir thankyou timer issue | {"id": "101265640141", "mobile_number": "7337557252", "posted_by": "S. Shravani", "remarks": "rectified Sir thankyou timer issue", "status": "Attended By Officer", "time_stamp": "11-MAR-2026 16:00:28"} |
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)
);