snapshot_comments
3 rows where snapshot_pk = 34
This data as json, CSV (advanced)
Suggested facets: mobile_number, posted_by, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 93 | 34 34 | 1 | 110255503104 | 8328509062 | 2025-10-14T08:50:23Z | Closed | Call Centre | Satisfied | {"id": "110255503104", "mobile_number": "8328509062", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "Closed", "time_stamp": "14-OCT-2025 14:20:23"} |
| 94 | 34 34 | 2 | 110255503104 | 7995009122 | 2025-10-08T19:32:36Z | Attended By Officer | VIJAY | complaint attended | {"id": "110255503104", "mobile_number": "7995009122", "posted_by": "VIJAY", "remarks": "complaint attended", "status": "Attended By Officer", "time_stamp": "09-OCT-2025 01:02:36"} |
| 95 | 34 34 | 3 | 110255503104 | 7995009122 | 2025-10-01T05:15:15Z | Under Process | VIJAY | under process | {"id": "110255503104", "mobile_number": "7995009122", "posted_by": "VIJAY", "remarks": "under process", "status": "Under Process", "time_stamp": "01-OCT-2025 10:45:15"} |
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)
);