home / aug-2025

snapshot_comments

6 rows where snapshot_pk = 2

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, status_text, posted_by, remarks, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
2 2 2 1 108255392612 9848812381 2025-08-08T04:37:08Z Closed Call Centre Satisfied {"id": "108255392612", "mobile_number": "9848812381", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "Closed", "time_stamp": "08-AUG-2025 10:07:08"}
3 2 2 2 108255392612 7993360295 2025-08-06T05:54:21Z Attended By Officer M.Satish Kumar done {"id": "108255392612", "mobile_number": "7993360295", "posted_by": "M.Satish Kumar", "remarks": "done", "status": "Attended By Officer", "time_stamp": "06-AUG-2025 11:24:21"}
4 2 2 3 108255392612 9848812381 2025-08-05T07:02:43Z Open Abedali khan M.Satish Kumar,Assistant Entomologist 7993360295 officer said he resolved as soon as possible {"id": "108255392612", "mobile_number": "9848812381", "posted_by": "Abedali khan", "remarks": "M.Satish Kumar,Assistant Entomologist 7993360295 officer said he resolved as soon as possible", "status": "Open", "time_stamp": "05-AUG-2025 12:32:43"}
5 2 2 4 108255392612 9848812381 2025-08-04T06:59:16Z Open Abedali khan Kept conference with M.Satish Kumar,Assistant Entomologist 7993360295 but call is not connecting {"id": "108255392612", "mobile_number": "9848812381", "posted_by": "Abedali khan", "remarks": "Kept conference with M.Satish Kumar,Assistant Entomologist 7993360295 but call is not connecting", "status": "Open", "time_stamp": "04-AUG-2025 12:29:16"}
6 2 2 5 108255392612 9848812381 2025-08-02T18:36:04Z Open Abedali khan Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. {"id": "108255392612", "mobile_number": "9848812381", "posted_by": "Abedali khan", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "03-AUG-2025 00:06:04"}
7 2 2 6 108255392612 9848812381 2025-08-01T14:12:18Z Open Abedali khan Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. {"id": "108255392612", "mobile_number": "9848812381", "posted_by": "Abedali khan", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "01-AUG-2025 19:42:18"}

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 25.421ms