home / jan-2026

snapshot_comments

3 rows where snapshot_pk = 27

✎ 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
60 27 27 1 101265640119 9440495390 2026-02-10T11:06:11Z Closed Call Centre Not Satisfied {"id": "101265640119", "mobile_number": "9440495390", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Closed", "time_stamp": "10-FEB-2026 16:36:11"}
61 27 27 2 101265640119 7331189192 2026-02-02T06:03:19Z Attended By Officer V.Thirumal reddy pipeline work in progress {"id": "101265640119", "mobile_number": "7331189192", "posted_by": "V.Thirumal reddy", "remarks": "pipeline work in progress", "status": "Attended By Officer", "time_stamp": "02-FEB-2026 11:33:19"}
62 27 27 3 101265640119 9440495390 2026-01-28T05:47:57Z Open Ward148 forwarded {"id": "101265640119", "mobile_number": "9440495390", "posted_by": "Ward148", "remarks": "forwarded", "status": "Open", "time_stamp": "28-JAN-2026 11:17:57"}

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