home / nov-2025

snapshot_comments

3 rows where snapshot_pk = 88

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, posted_by, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
153 88 88 1 111255552240 8686777732 2025-11-03T04:26:49Z Closed Call Centre Satisfied {"id": "111255552240", "mobile_number": "8686777732", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "Closed", "time_stamp": "03-NOV-2025 09:56:49"}
154 88 88 2 111255552240 7207923101 2025-11-02T07:39:52Z Attended By Officer Dr.YADAGIRI operator dogs attend {"id": "111255552240", "mobile_number": "7207923101", "posted_by": "Dr.YADAGIRI", "remarks": "operator dogs attend", "status": "Attended By Officer", "time_stamp": "02-NOV-2025 13:09:52"}
155 88 88 3 111255552240 7207923101 2025-11-01T09:40:27Z Under Process Dr.YADAGIRI Dear Citizen your grievance is assigned to dog catching team {"id": "111255552240", "mobile_number": "7207923101", "posted_by": "Dr.YADAGIRI", "remarks": "Dear Citizen your grievance is assigned to dog catching team", "status": "Under Process", "time_stamp": "01-NOV-2025 15:10: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 11.712ms