snapshot_comments
3 rows where snapshot_pk = 52
This data as json, CSV (advanced)
Suggested facets: comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 77 | 52 52 | 1 | 102255097137 | - | 2025-02-10T08:49:00Z | - | Call Centre | Partially Satisfied | {"id": "102255097137", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Partially Satisfied", "status": "-", "time_stamp": "10-FEB-2025 14:19:00"} |
| 78 | 52 52 | 2 | 102255097137 | 9701365515 | 2025-02-03T05:52:10Z | Attended By Officer | Sri Venkatesh Dy.EE(SWM) | Cleared, Sorry for the inconvenience | {"id": "102255097137", "mobile_number": "9701365515", "posted_by": "Sri Venkatesh Dy.EE(SWM)", "remarks": "Cleared, Sorry for the inconvenience", "status": "Attended By Officer", "time_stamp": "03-FEB-2025 11:22:10"} |
| 79 | 52 52 | 3 | 102255097137 | 7995085329 | 2025-02-02T01:18:11Z | Open | Dharma Reddy ,Dy.EE | pertains to addagutta akhil area | {"id": "102255097137", "mobile_number": "7995085329", "posted_by": "Dharma Reddy ,Dy.EE", "remarks": "pertains to addagutta akhil area", "status": "Open", "time_stamp": "02-FEB-2025 06:48:11"} |
Advanced export
JSON shape: default, array, newline-delimited, object
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)
);