home / jun-2025

snapshot_comments

3 rows where snapshot_pk = 28

✎ 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
65 28 28 1 106255287924 9704234838 2025-06-05T06:05:02Z Attended By Officer M Satya Narayana Reddy rectified {"id": "106255287924", "mobile_number": "9704234838", "posted_by": "M Satya Narayana Reddy", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "05-JUN-2025 11:35:02"}
66 28 28 2 106255287924 9154369423 2025-06-03T17:50:42Z Open M.satyanarayana Reddy ae {"id": "106255287924", "mobile_number": "9154369423", "posted_by": "M.satyanarayana Reddy", "remarks": "ae", "status": "Open", "time_stamp": "03-JUN-2025 23:20:42"}
67 28 28 3 106255287924 8555902142 2025-06-02T02:59:18Z Open Sri.K.Raju forward {"id": "106255287924", "mobile_number": "8555902142", "posted_by": "Sri.K.Raju", "remarks": "forward", "status": "Open", "time_stamp": "02-JUN-2025 08:29:18"}

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