home / dec-2025

snapshot_comments

3 rows where snapshot_pk = 6

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: mobile_number, status_text, posted_by, comment_timestamp (date)

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
8 6 6 1 112255596093 7995007396 2026-03-10T13:25:57Z Attended By Officer K.satyalakshmi work will takenup administrative sanction {"id": "112255596093", "mobile_number": "7995007396", "posted_by": "K.satyalakshmi", "remarks": "work will takenup administrative sanction", "status": "Attended By Officer", "time_stamp": "10-MAR-2026 18:55:57"}
9 6 6 2 112255596093 9908003111 2026-02-13T10:44:39Z Open Call Centre Not Satisfied {"id": "112255596093", "mobile_number": "9908003111", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "13-FEB-2026 16:14:39"}
10 6 6 3 112255596093 7995007396 2026-02-10T13:35:02Z Attended By Officer K.satyalakshmi work will be taken up by administrative sanction {"id": "112255596093", "mobile_number": "7995007396", "posted_by": "K.satyalakshmi", "remarks": "work will be taken up by administrative sanction", "status": "Attended By Officer", "time_stamp": "10-FEB-2026 19:05: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 16.584ms