home / jun-2025

snapshot_comments

4 rows where snapshot_pk = 1

✎ 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
1 1 1 1 106255287896 9642841166 2025-06-08T02:22:10Z Closed kiran - {"id": "106255287896", "mobile_number": "9642841166", "posted_by": "kiran", "remarks": "-", "status": "Closed", "time_stamp": "08-JUN-2025 07:52:10"}
2 1 1 2 106255287896 - 2025-06-05T10:51:46Z - Call Centre Not Satisfied {"id": "106255287896", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "-", "time_stamp": "05-JUN-2025 16:21:46"}
3 1 1 3 106255287896 - 2025-06-03T06:25:58Z Attended By Officer Ward134 work is completed {"id": "106255287896", "mobile_number": "-", "posted_by": "Ward134", "remarks": "work is completed", "status": "Attended By Officer", "time_stamp": "03-JUN-2025 11:55:58"}
4 1 1 4 106255287896 9000115068 2025-06-02T04:24:02Z Under Process Smt S Sravanthi same complaint received more than one time. {"id": "106255287896", "mobile_number": "9000115068", "posted_by": "Smt S Sravanthi", "remarks": "same complaint received more than one time.", "status": "Under Process", "time_stamp": "02-JUN-2025 09:54:02"}

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