snapshot_comments
3 rows where snapshot_pk = 35
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 69 | 35 35 | 1 | 112255596122 | 9000100058 | 2025-12-03T02:26:28Z | Attended By Officer | Smt Anuradha | clear | {"id": "112255596122", "mobile_number": "9000100058", "posted_by": "Smt Anuradha", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "03-DEC-2025 07:56:28"} |
| 70 | 35 35 | 2 | 112255596122 | 7995009087 | 2025-12-02T09:46:51Z | Open | P.Prashanth | garbage | {"id": "112255596122", "mobile_number": "7995009087", "posted_by": "P.Prashanth", "remarks": "garbage", "status": "Open", "time_stamp": "02-DEC-2025 15:16:51"} |
| 71 | 35 35 | 3 | 112255596122 | 9000100058 | 2025-12-01T03:30:19Z | Open | Smt Anuradha | need cap for manhole square | {"id": "112255596122", "mobile_number": "9000100058", "posted_by": "Smt Anuradha", "remarks": "need cap for manhole square", "status": "Open", "time_stamp": "01-DEC-2025 09:00:19"} |
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)
);