snapshot_comments
2 rows where snapshot_pk = 57
This data as json, CSV (advanced)
Suggested facets: comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 96 | 57 57 | 1 | 102265688312 | 7995009113 | 2026-03-18T04:14:22Z | Closed | K. Swathi | please check | {"id": "102265688312", "mobile_number": "7995009113", "posted_by": "K. Swathi", "remarks": "please check", "status": "Closed", "time_stamp": "18-MAR-2026 09:44:22"} |
| 97 | 57 57 | 2 | 102265688312 | 8121041427 | 2026-03-17T17:45:18Z | Open | B.Gangadhar | garbage on streets | {"id": "102265688312", "mobile_number": "8121041427", "posted_by": "B.Gangadhar", "remarks": "garbage on streets", "status": "Open", "time_stamp": "17-MAR-2026 23:15:18"} |
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)
);