snapshot_comments
2 rows where snapshot_pk = 122
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 |
|---|---|---|---|---|---|---|---|---|---|
| 187 | 122 122 | 1 | 105255241158 | 8712034408 | 2025-05-23T08:07:59Z | Attended By Officer | Dr Srinivas | cleared | {"id": "105255241158", "mobile_number": "8712034408", "posted_by": "Dr Srinivas", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "23-MAY-2025 13:37:59"} |
| 188 | 122 122 | 2 | 105255241158 | 7981665687 | 2025-05-21T17:01:32Z | Open | Sri.Shyam Sunder Reddy | send n check | {"id": "105255241158", "mobile_number": "7981665687", "posted_by": "Sri.Shyam Sunder Reddy", "remarks": "send n check", "status": "Open", "time_stamp": "21-MAY-2025 22:31:32"} |
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)
);