snapshot_comments
4 rows where snapshot_pk = 41
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 |
|---|---|---|---|---|---|---|---|---|---|
| 64 | 41 41 | 1 | 101255052462 | - | 2025-01-18T09:17:38Z | - | Call Centre | Satisfied | {"id": "101255052462", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "18-JAN-2025 14:47:38"} |
| 65 | 41 41 | 2 | 101255052462 | 9154909281 | 2025-01-06T14:29:39Z | Attended By Officer | Sri.T.R Prasad I/C | rectified sir | {"id": "101255052462", "mobile_number": "9154909281", "posted_by": "Sri.T.R Prasad I/C", "remarks": "rectified sir", "status": "Attended By Officer", "time_stamp": "06-JAN-2025 19:59:39"} |
| 66 | 41 41 | 3 | 101255052462 | 9154909281 | 2025-01-06T14:28:30Z | Attended By Officer | Sri.T.R Prasad I/C | rectified sir | {"id": "101255052462", "mobile_number": "9154909281", "posted_by": "Sri.T.R Prasad I/C", "remarks": "rectified sir", "status": "Attended By Officer", "time_stamp": "06-JAN-2025 19:58:30"} |
| 67 | 41 41 | 4 | 101255052462 | 9849908934 | 2025-01-03T10:27:27Z | Open | Ward019 | rkpuram20 | {"id": "101255052462", "mobile_number": "9849908934", "posted_by": "Ward019", "remarks": "rkpuram20", "status": "Open", "time_stamp": "03-JAN-2025 15:57:27"} |
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)
);