home / oct-2025

snapshot_comments

3 rows where snapshot_pk = 6

✎ 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
12 6 6 1 110255503076 9704670163 2025-10-07T19:27:40Z Attended By Officer Sri. Rama rao rectified {"id": "110255503076", "mobile_number": "9704670163", "posted_by": "Sri. Rama rao", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "08-OCT-2025 00:57:40"}
13 6 6 2 110255503076 8712499192 2025-10-01T04:59:13Z Open Smt K. Lavanya pertain to Attapur {"id": "110255503076", "mobile_number": "8712499192", "posted_by": "Smt K. Lavanya", "remarks": "pertain to Attapur", "status": "Open", "time_stamp": "01-OCT-2025 10:29:13"}
14 6 6 3 110255503076 9966540552 2025-09-30T18:42:44Z Open Deepak streets lights not working {"id": "110255503076", "mobile_number": "9966540552", "posted_by": "Deepak", "remarks": "streets lights not working", "status": "Open", "time_stamp": "01-OCT-2025 00:12:44"}

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.203ms