snapshot_comments
3 rows where snapshot_pk = 16
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 |
|---|---|---|---|---|---|---|---|---|---|
| 26 | 16 16 | 1 | 105255241052 | 9000554766 | 2025-10-14T10:14:40Z | Closed | Y Srikanth | Pertains to HMWSSB | {"id": "105255241052", "mobile_number": "9000554766", "posted_by": "Y Srikanth", "remarks": "Pertains to HMWSSB", "status": "Closed", "time_stamp": "14-OCT-2025 15:44:40"} |
| 27 | 16 16 | 2 | 105255241052 | 9849194104 | 2025-09-09T17:13:01Z | Open | santosh | humble request please make it clear | {"id": "105255241052", "mobile_number": "9849194104", "posted_by": "santosh", "remarks": "humble request please make it clear", "status": "Open", "time_stamp": "09-SEP-2025 22:43:01"} |
| 28 | 16 16 | 3 | 105255241052 | 7995009122 | 2025-05-05T05:07:41Z | Open | VIJAY | pertains to HMWSSB | {"id": "105255241052", "mobile_number": "7995009122", "posted_by": "VIJAY", "remarks": "pertains to HMWSSB", "status": "Open", "time_stamp": "05-MAY-2025 10:37:41"} |
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)
);