home / sept-2025

snapshot_comments

3 rows where snapshot_pk = 15

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
31 15 15 1 109255451025 9154299704 2025-09-20T06:22:25Z Attended By Officer Sri Narsing Rao k {"id": "109255451025", "mobile_number": "9154299704", "posted_by": "Sri Narsing Rao", "remarks": "k", "status": "Attended By Officer", "time_stamp": "20-SEP-2025 11:52:25"}
32 15 15 2 109255451025 9154299704 2025-09-01T10:58:13Z Open Musharfuddin p {"id": "109255451025", "mobile_number": "9154299704", "posted_by": "Musharfuddin", "remarks": "p", "status": "Open", "time_stamp": "01-SEP-2025 16:28:13"}
33 15 15 3 109255451025 8712499192 2025-08-31T20:45:56Z Under Process Smt K. Lavanya under process {"id": "109255451025", "mobile_number": "8712499192", "posted_by": "Smt K. Lavanya", "remarks": "under process", "status": "Under Process", "time_stamp": "01-SEP-2025 02:15:56"}

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