home / nov-2025

snapshot_comments

3 rows where snapshot_pk = 41

✎ View and edit SQL

This data as json, CSV (advanced)

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

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
71 41 41 1 111255552191 7337364206 2025-11-09T06:46:24Z Attended By Officer Sai Tharun DYEE(SWM) cleared {"id": "111255552191", "mobile_number": "7337364206", "posted_by": "Sai Tharun DYEE(SWM)", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "09-NOV-2025 12:16:24"}
72 41 41 2 111255552191 9395584129 2025-11-08T10:28:03Z Open Call Centre Not Satisfied {"id": "111255552191", "mobile_number": "9395584129", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "08-NOV-2025 15:58:03"}
73 41 41 3 111255552191 7337364206 2025-11-03T03:15:27Z Attended By Officer Sai Tharun DYEE(SWM) cleared {"id": "111255552191", "mobile_number": "7337364206", "posted_by": "Sai Tharun DYEE(SWM)", "remarks": "cleared", "status": "Attended By Officer", "time_stamp": "03-NOV-2025 08:45:27"}

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