home / jan-2026

snapshot_comments

3 rows where snapshot_pk = 9

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, status_text, posted_by, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
30 9 9 1 101265640103 9121245035 2026-01-02T10:40:34Z Attended By Officer Sri K. Raghupathi reddy sir rectified {"id": "101265640103", "mobile_number": "9121245035", "posted_by": "Sri K. Raghupathi reddy", "remarks": "sir rectified", "status": "Attended By Officer", "time_stamp": "02-JAN-2026 16:10:34"}
31 9 9 2 101265640103 6309824104 2026-01-01T21:08:27Z Open Rajini PDO Citizen informed that the grievance has been pending. So please take necessary action.Thank you sir. {"id": "101265640103", "mobile_number": "6309824104", "posted_by": "Rajini PDO", "remarks": "Citizen informed that the grievance has been pending. So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "02-JAN-2026 02:38:27"}
32 9 9 3 101265640103 6309824104 2025-12-31T19:58:05Z Open Rajini PDO D Mart lane {"id": "101265640103", "mobile_number": "6309824104", "posted_by": "Rajini PDO", "remarks": "D Mart lane", "status": "Open", "time_stamp": "01-JAN-2026 01:28:05"}

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