snapshot_comments
4 rows where snapshot_pk = 34
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 |
|---|---|---|---|---|---|---|---|---|---|
| 55 | 34 34 | 1 | 105255241070 | 9966759696 | 2025-06-22T08:05:14Z | Attended By Officer | Sri.P.Raghuveer Reddy | complent clear sir | {"id": "105255241070", "mobile_number": "9966759696", "posted_by": "Sri.P.Raghuveer Reddy", "remarks": "complent clear sir", "status": "Attended By Officer", "time_stamp": "22-JUN-2025 13:35:14"} |
| 56 | 34 34 | 2 | 105255241070 | 9949092447 | 2025-06-22T07:21:56Z | Open | Srinivas | After 2 months some one calling to chk if it is resolved. But it was never resolved | {"id": "105255241070", "mobile_number": "9949092447", "posted_by": "Srinivas", "remarks": "After 2 months some one calling to chk if it is resolved. But it was never resolved", "status": "Open", "time_stamp": "22-JUN-2025 12:51:56"} |
| 57 | 34 34 | 3 | 105255241070 | 9966759696 | 2025-06-22T06:14:15Z | Attended By Officer | Sri.P.Raghuveer Reddy | complent Clear Sir | {"id": "105255241070", "mobile_number": "9966759696", "posted_by": "Sri.P.Raghuveer Reddy", "remarks": "complent Clear Sir", "status": "Attended By Officer", "time_stamp": "22-JUN-2025 11:44:15"} |
| 58 | 34 34 | 4 | 105255241070 | 8121041563 | 2025-06-19T16:14:44Z | Open | DRF TEAM | {"id": "105255241070", "mobile_number": "8121041563", "posted_by": "DRF TEAM", "remarks": "", "status": "Open", "time_stamp": "19-JUN-2025 21:44:44"} |
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)
);