snapshot_comments
3 rows where snapshot_pk = 35
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 53 | 35 35 | 1 | 101255052455 | 9154299704 | 2025-02-24T04:24:00Z | Attended By Officer | Sri. MD. Musharraffuddin | k | {"id": "101255052455", "mobile_number": "9154299704", "posted_by": "Sri. MD. Musharraffuddin", "remarks": "k", "status": "Attended By Officer", "time_stamp": "24-FEB-2025 09:54:00"} |
| 54 | 35 35 | 2 | 101255052455 | 9849697057 | 2025-01-01T14:27:33Z | Open | SUBBALAKSHMI | note: citizen said that to clean the carbon. | {"id": "101255052455", "mobile_number": "9849697057", "posted_by": "SUBBALAKSHMI", "remarks": "note: citizen said that to clean the carbon.", "status": "Open", "time_stamp": "01-JAN-2025 19:57:33"} |
| 55 | 35 35 | 3 | 101255052455 | 9849697057 | 2025-01-01T14:26:48Z | Open | SUBBALAKSHMI | Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. | {"id": "101255052455", "mobile_number": "9849697057", "posted_by": "SUBBALAKSHMI", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "01-JAN-2025 19:56:48"} |
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)
);