snapshot_comments
3 rows where snapshot_pk = 85
This data as json, CSV (advanced)
Suggested facets: mobile_number, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 151 | 85 85 | 1 | 107255337740 | 9966657488 | 2025-07-18T11:59:07Z | Submitted for Sanction | VISHNU | clear | {"id": "107255337740", "mobile_number": "9966657488", "posted_by": "VISHNU", "remarks": "clear", "status": "Submitted for Sanction", "time_stamp": "18-JUL-2025 17:29:07"} |
| 152 | 85 85 | 2 | 107255337740 | 9966657488 | 2025-07-07T05:33:51Z | Submitted for Sanction | VISHNU | still no one attended for clear this issue pot holes , every going accidents in this area | {"id": "107255337740", "mobile_number": "9966657488", "posted_by": "VISHNU", "remarks": "still no one attended for clear this issue pot holes , every going accidents in this area", "status": "Submitted for Sanction", "time_stamp": "07-JUL-2025 11:03:51"} |
| 153 | 85 85 | 3 | 107255337740 | 7995077953 | 2025-07-02T02:54:45Z | Submitted for Sanction | Sri. Kalyan | under sanction | {"id": "107255337740", "mobile_number": "7995077953", "posted_by": "Sri. Kalyan", "remarks": "under sanction", "status": "Submitted for Sanction", "time_stamp": "02-JUL-2025 08:24:45"} |
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)
);