snapshot_comments
3 rows where snapshot_pk = 56
This data as json, CSV (advanced)
Suggested facets: status_text, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 125 | 56 56 | 1 | 101265640151 | 8125971396 | 2026-01-27T03:16:42Z | Closed | Ashish Kumar Tiwari | not related to ghmc | {"id": "101265640151", "mobile_number": "8125971396", "posted_by": "Ashish Kumar Tiwari", "remarks": "not related to ghmc", "status": "Closed", "time_stamp": "27-JAN-2026 08:46:42"} |
| 126 | 56 56 | 2 | 101265640151 | 7674919906 | 2026-01-27T01:57:51Z | Open | B. Uday Kumar | forwarded to another | {"id": "101265640151", "mobile_number": "7674919906", "posted_by": "B. Uday Kumar", "remarks": "forwarded to another", "status": "Open", "time_stamp": "27-JAN-2026 07:27:51"} |
| 127 | 56 56 | 3 | 101265640151 | 9010207676 | 2026-01-02T01:04:18Z | Open | Dr .G .Rajnikanth | . | {"id": "101265640151", "mobile_number": "9010207676", "posted_by": "Dr .G .Rajnikanth", "remarks": ".", "status": "Open", "time_stamp": "02-JAN-2026 06:34:18"} |
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)
);