home / jun-2025

snapshot_comments

3 rows where snapshot_pk = 43

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
97 43 43 1 106255287936 - 2025-06-17T04:22:03Z - Call Centre Partially Satisfied {"id": "106255287936", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Partially Satisfied", "status": "-", "time_stamp": "17-JUN-2025 09:52:03"}
98 43 43 2 106255287936 - 2025-06-03T06:33:34Z Attended By Officer Ward134 work is completed {"id": "106255287936", "mobile_number": "-", "posted_by": "Ward134", "remarks": "work is completed", "status": "Attended By Officer", "time_stamp": "03-JUN-2025 12:03:34"}
99 43 43 3 106255287936 9121245035 2025-06-02T14:39:31Z Open Sri K. Raghupathi reddy other ward {"id": "106255287936", "mobile_number": "9121245035", "posted_by": "Sri K. Raghupathi reddy", "remarks": "other ward", "status": "Open", "time_stamp": "02-JUN-2025 20:09:31"}

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