snapshot_comments
3 rows where snapshot_pk = 50
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 |
|---|---|---|---|---|---|---|---|---|---|
| 109 | 50 50 | 1 | 110255503120 | 9848936842 | 2025-10-01T04:34:20Z | Attended By Officer | Pratapsen | Cleared sorry for the inconveniences | {"id": "110255503120", "mobile_number": "9848936842", "posted_by": "Pratapsen", "remarks": "Cleared sorry for the inconveniences", "status": "Attended By Officer", "time_stamp": "01-OCT-2025 10:04:20"} |
| 110 | 50 50 | 2 | 110255503120 | 7989301584 | 2025-10-01T04:21:14Z | Open | Dr.K.Manjula | Secendrabad Ghmc | {"id": "110255503120", "mobile_number": "7989301584", "posted_by": "Dr.K.Manjula", "remarks": "Secendrabad Ghmc", "status": "Open", "time_stamp": "01-OCT-2025 09:51:14"} |
| 111 | 50 50 | 3 | 110255503120 | 9701365515 | 2025-10-01T01:42:50Z | Open | Sri Venkatesh Dy.EE(SWM) | pertains to Malkajgiri | {"id": "110255503120", "mobile_number": "9701365515", "posted_by": "Sri Venkatesh Dy.EE(SWM)", "remarks": "pertains to Malkajgiri", "status": "Open", "time_stamp": "01-OCT-2025 07:12:50"} |
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)
);