snapshot_comments
4 rows where snapshot_pk = 6
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 |
|---|---|---|---|---|---|---|---|---|---|
| 9 | 6 6 | 1 | 107255337660 | 9701365515 | 2025-07-04T04:57:20Z | Attended By Officer | Sri Venkatesh Dy.EE(SWM) | cleared | {"id": "107255337660", "mobile_number": "9701365515", "posted_by": "Sri Venkatesh Dy.EE(SWM)", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "04-JUL-2025 10:27:20"} |
| 10 | 6 6 | 2 | 107255337660 | 9848936842 | 2025-07-04T04:24:35Z | Open | Pratapsen | Another circle | {"id": "107255337660", "mobile_number": "9848936842", "posted_by": "Pratapsen", "remarks": "Another circle", "status": "Open", "time_stamp": "04-JUL-2025 09:54:35"} |
| 11 | 6 6 | 3 | 107255337660 | 9154369422 | 2025-07-04T00:50:17Z | Open | Dr. A Praveena | pertaining to our circle | {"id": "107255337660", "mobile_number": "9154369422", "posted_by": "Dr. A Praveena", "remarks": "pertaining to our circle", "status": "Open", "time_stamp": "04-JUL-2025 06:20:17"} |
| 12 | 6 6 | 4 | 107255337660 | 9848936842 | 2025-07-01T01:45:16Z | Open | Pratapsen | Another circle | {"id": "107255337660", "mobile_number": "9848936842", "posted_by": "Pratapsen", "remarks": "Another circle", "status": "Open", "time_stamp": "01-JUL-2025 07:15:16"} |
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)
);