home / mar-2025

snapshot_comments

3 rows where snapshot_pk = 86

✎ View and edit SQL

This data as json, CSV (advanced)

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

comment_pk ▼ snapshot_pk ordinal complaint_id mobile_number comment_timestamp status_text posted_by remarks raw_comment_json
125 86 86 1 103255140382 - 2025-03-05T10:24:02Z - Call Centre Satisfied {"id": "103255140382", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "05-MAR-2025 15:54:02"}
126 86 86 2 103255140382 - 2025-03-05T10:23:20Z - Call Centre Satisfied {"id": "103255140382", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "05-MAR-2025 15:53:20"}
127 86 86 3 103255140382 9703336064 2025-03-03T06:48:33Z Attended By Officer Smt. Dr. Rajini resolved {"id": "103255140382", "mobile_number": "9703336064", "posted_by": "Smt. Dr. Rajini", "remarks": "resolved", "status": "Attended By Officer", "time_stamp": "03-MAR-2025 12:18:33"}

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