home / jun-2025

snapshot_comments

4 rows where snapshot_pk = 22

✎ 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
45 22 22 1 106255287917 7097137546 2025-06-05T11:43:36Z Closed vishal - {"id": "106255287917", "mobile_number": "7097137546", "posted_by": "vishal", "remarks": "-", "status": "Closed", "time_stamp": "05-JUN-2025 17:13:36"}
46 22 22 2 106255287917 9182954615 2025-06-04T05:48:22Z Attended By Officer P.Venkateshwar Goud rectified sir {"id": "106255287917", "mobile_number": "9182954615", "posted_by": "P.Venkateshwar Goud", "remarks": "rectified sir", "status": "Attended By Officer", "time_stamp": "04-JUN-2025 11:18:22"}
47 22 22 3 106255287917 9381459256 2025-06-03T04:08:04Z Open P.Venkateshwar Goud. forward {"id": "106255287917", "mobile_number": "9381459256", "posted_by": "P.Venkateshwar Goud.", "remarks": "forward", "status": "Open", "time_stamp": "03-JUN-2025 09:38:04"}
48 22 22 4 106255287917 9182954615 2025-06-02T03:27:54Z Open P.Venkateshwar Goud forward {"id": "106255287917", "mobile_number": "9182954615", "posted_by": "P.Venkateshwar Goud", "remarks": "forward", "status": "Open", "time_stamp": "02-JUN-2025 08:57:54"}

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