home / jun-2025

snapshot_comments

3 rows where snapshot_pk = 70

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: status_text, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
148 70 70 1 106255287965 9154797217 2025-06-15T16:54:38Z Attended By Officer Y.Rajitha Fogging done. {"id": "106255287965", "mobile_number": "9154797217", "posted_by": "Y.Rajitha", "remarks": "Fogging done.", "status": "Attended By Officer", "time_stamp": "15-JUN-2025 22:24:38"}
149 70 70 2 106255287965 8008060413 2025-06-11T11:55:40Z Open B.Bhaskar circle18 {"id": "106255287965", "mobile_number": "8008060413", "posted_by": "B.Bhaskar", "remarks": "circle18", "status": "Open", "time_stamp": "11-JUN-2025 17:25:40"}
150 70 70 3 106255287965 8790522342 2025-06-10T11:34:13Z Open Md. Nooullah Khan other ward {"id": "106255287965", "mobile_number": "8790522342", "posted_by": "Md. Nooullah Khan", "remarks": "other ward", "status": "Open", "time_stamp": "10-JUN-2025 17:04:13"}

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