home / oct-2025

snapshot_comments

4 rows where snapshot_pk = 22

✎ View and edit SQL

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
63 22 22 1 110255503092 7981829691 2025-10-10T09:27:12Z Closed Call Centre Partially Satisfied {"id": "110255503092", "mobile_number": "7981829691", "posted_by": "Call Centre", "remarks": "Partially Satisfied", "status": "Closed", "time_stamp": "10-OCT-2025 14:57:12"}
64 22 22 2 110255503092 9154686556 2025-10-09T12:51:35Z Attended By Officer T.Sowmya . {"id": "110255503092", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": ".", "status": "Attended By Officer", "time_stamp": "09-OCT-2025 18:21:35"}
65 22 22 3 110255503092 7981829691 2025-10-07T13:05:41Z Open Md Ayub khan Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. {"id": "110255503092", "mobile_number": "7981829691", "posted_by": "Md Ayub khan", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "07-OCT-2025 18:35:41"}
66 22 22 4 110255503092 7981829691 2025-10-06T08:04:53Z Open Md Ayub khan Citizen informed that the grievance has been pending. So please take necessary action.Thank you sir. {"id": "110255503092", "mobile_number": "7981829691", "posted_by": "Md Ayub khan", "remarks": "Citizen informed that the grievance has been pending. So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "06-OCT-2025 13:34:53"}

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
);
Powered by Datasette · Queries took 24.344ms