home / sept-2025

snapshot_comments

3 rows where snapshot_pk = 17

✎ 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
36 17 17 1 109255451027 9154369423 2025-09-11T03:36:44Z Attended By Officer M.satyanarayana Reddy rectified {"id": "109255451027", "mobile_number": "9154369423", "posted_by": "M.satyanarayana Reddy", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "11-SEP-2025 09:06:44"}
37 17 17 2 109255451027 9394797796 2025-09-05T05:11:48Z Open SYED ABDUL MALIK SIR I HUMBLY REQUEST YOU TO RESOLVED OUR PROBLEM PLS {"id": "109255451027", "mobile_number": "9394797796", "posted_by": "SYED ABDUL MALIK", "remarks": "SIR I HUMBLY REQUEST YOU TO RESOLVED OUR PROBLEM PLS", "status": "Open", "time_stamp": "05-SEP-2025 10:41:48"}
38 17 17 3 109255451027 9394797796 2025-09-03T07:44:24Z Open SYED ABDUL MALIK not working work given complaint sir please action sow many accident illigal activity {"id": "109255451027", "mobile_number": "9394797796", "posted_by": "SYED ABDUL MALIK", "remarks": "not working work given complaint sir please action sow many accident illigal activity", "status": "Open", "time_stamp": "03-SEP-2025 13:14:24"}

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