home / feb-2025

snapshot_comments

3 rows where snapshot_pk = 27

✎ 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
34 27 27 1 102255097112 9000176036 2025-08-28T17:16:10Z Attended By Officer Shiva Did not attend {"id": "102255097112", "mobile_number": "9000176036", "posted_by": "Shiva", "remarks": "Did not attend", "status": "Attended By Officer", "time_stamp": "28-AUG-2025 22:46:10"}
35 27 27 2 102255097112 - 2025-02-08T09:30:17Z - Call Centre Not Satisfied {"id": "102255097112", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "-", "time_stamp": "08-FEB-2025 15:00:17"}
36 27 27 3 102255097112 9121240332 2025-02-05T03:41:00Z Attended By Officer Sri TR Prasad meerpet muncipality {"id": "102255097112", "mobile_number": "9121240332", "posted_by": "Sri TR Prasad", "remarks": "meerpet muncipality", "status": "Attended By Officer", "time_stamp": "05-FEB-2025 09:11:00"}

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