home / oct-2025

snapshot_comments

4 rows where snapshot_pk = 33

✎ 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
89 33 33 1 110255503103 8143616865 2025-10-06T21:26:29Z Attended By Officer Md Vikash Still Pending.. {"id": "110255503103", "mobile_number": "8143616865", "posted_by": "Md Vikash", "remarks": "Still Pending..", "status": "Attended By Officer", "time_stamp": "07-OCT-2025 02:56:29"}
90 33 33 2 110255503103 9154931422 2025-10-06T11:54:22Z Attended By Officer Dr.Chandra Shekar clear {"id": "110255503103", "mobile_number": "9154931422", "posted_by": "Dr.Chandra Shekar", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "06-OCT-2025 17:24:22"}
91 33 33 3 110255503103 8143616865 2025-10-06T11:46:19Z Open Call Centre Not Satisfied {"id": "110255503103", "mobile_number": "8143616865", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "06-OCT-2025 17:16:19"}
92 33 33 4 110255503103 9154931422 2025-10-05T11:27:12Z Attended By Officer Dr.Chandra Shekar clear {"id": "110255503103", "mobile_number": "9154931422", "posted_by": "Dr.Chandra Shekar", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "05-OCT-2025 16:57:12"}

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