home / dec-2025

snapshot_comments

4 rows where snapshot_pk = 7

✎ 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
11 7 7 1 112255596094 9908003111 2026-02-25T06:16:46Z Closed Call Centre Not Satisfied {"id": "112255596094", "mobile_number": "9908003111", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Closed", "time_stamp": "25-FEB-2026 11:46:46"}
12 7 7 2 112255596094 7995007396 2026-02-10T07:48:20Z Attended By Officer K.satyalakshmi sir shortly repair {"id": "112255596094", "mobile_number": "7995007396", "posted_by": "K.satyalakshmi", "remarks": "sir shortly repair", "status": "Attended By Officer", "time_stamp": "10-FEB-2026 13:18:20"}
13 7 7 3 112255596094 7995007396 2026-02-10T07:47:17Z Open K.satyalakshmi sir partains to yapral {"id": "112255596094", "mobile_number": "7995007396", "posted_by": "K.satyalakshmi", "remarks": "sir partains to yapral", "status": "Open", "time_stamp": "10-FEB-2026 13:17:17"}
14 7 7 4 112255596094 7995007396 2026-02-10T07:46:18Z Open K.satyalakshmi sir partains to ward no.189 {"id": "112255596094", "mobile_number": "7995007396", "posted_by": "K.satyalakshmi", "remarks": "sir partains to ward no.189", "status": "Open", "time_stamp": "10-FEB-2026 13:16:18"}

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.585ms