home / oct-2025

snapshot_comments

3 rows where snapshot_pk = 88

✎ 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
169 88 88 1 110255503158 9247540142 2026-03-24T07:03:10Z Closed Sanchit Gangwar, IAS na {"id": "110255503158", "mobile_number": "9247540142", "posted_by": "Sanchit Gangwar, IAS", "remarks": "na", "status": "Closed", "time_stamp": "24-MAR-2026 12:33:10"}
170 88 88 2 110255503158 7331189482 2025-10-03T18:10:12Z Open G.Asha Hmwssb {"id": "110255503158", "mobile_number": "7331189482", "posted_by": "G.Asha", "remarks": "Hmwssb", "status": "Open", "time_stamp": "03-OCT-2025 23:40:12"}
171 88 88 3 110255503158 8712419174 2025-10-01T03:43:10Z Open C. Shiva Prasad 119 ward {"id": "110255503158", "mobile_number": "8712419174", "posted_by": "C. Shiva Prasad", "remarks": "119 ward", "status": "Open", "time_stamp": "01-OCT-2025 09:13:10"}

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