snapshot_comments
2 rows where snapshot_pk = 13
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 |
|---|---|---|---|---|---|---|---|---|---|
| 22 | 13 13 | 1 | 105255241047 | 9246363232 | 2025-05-15T14:01:14Z | Closed | AbdulRaheemShaik | - | {"id": "105255241047", "mobile_number": "9246363232", "posted_by": "AbdulRaheemShaik", "remarks": "-", "status": "Closed", "time_stamp": "15-MAY-2025 19:31:14"} |
| 23 | 13 13 | 2 | 105255241047 | 9100025128 | 2025-05-06T06:51:53Z | Attended By Officer | Sri. T.R.Prasad | rectified | {"id": "105255241047", "mobile_number": "9100025128", "posted_by": "Sri. T.R.Prasad", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "06-MAY-2025 12:21:53"} |
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)
);