home / oct-2025

snapshot_comments

4 rows where snapshot_pk = 11

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: status_text, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
34 11 11 1 110255503081 7981836439 2025-10-20T10:04:17Z Closed Call Centre Satisfied {"id": "110255503081", "mobile_number": "7981836439", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "Closed", "time_stamp": "20-OCT-2025 15:34:17"}
35 11 11 2 110255503081 8500496801 2025-10-07T10:54:34Z Attended By Officer Smt R Shirisha rectified {"id": "110255503081", "mobile_number": "8500496801", "posted_by": "Smt R Shirisha", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "07-OCT-2025 16:24:34"}
36 11 11 3 110255503081 9059345525 2025-10-06T05:18:57Z Open G Kavitha out of package {"id": "110255503081", "mobile_number": "9059345525", "posted_by": "G Kavitha", "remarks": "out of package", "status": "Open", "time_stamp": "06-OCT-2025 10:48:57"}
37 11 11 4 110255503081 9989930592 2025-10-01T04:31:22Z Open B.Swapna balkampet {"id": "110255503081", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "balkampet", "status": "Open", "time_stamp": "01-OCT-2025 10:01:22"}

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