snapshot_comments
3 rows where snapshot_pk = 105
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 |
|---|---|---|---|---|---|---|---|---|---|
| 165 | 105 105 | 1 | 105255241141 | 9154960548 | 2025-05-17T10:39:36Z | Attended By Officer | Smt.N.Lakshmi Priya I/C | closed | {"id": "105255241141", "mobile_number": "9154960548", "posted_by": "Smt.N.Lakshmi Priya I/C", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "17-MAY-2025 16:09:36"} |
| 166 | 105 105 | 2 | 105255241141 | 9154369439 | 2025-05-17T02:31:06Z | Open | G Likhitha | Chanda nagar | {"id": "105255241141", "mobile_number": "9154369439", "posted_by": "G Likhitha", "remarks": "Chanda nagar", "status": "Open", "time_stamp": "17-MAY-2025 08:01:06"} |
| 167 | 105 105 | 3 | 105255241141 | 9154960548 | 2025-05-06T17:29:30Z | Open | Smt.N.Lakshmi Priya I/C | Transfar | {"id": "105255241141", "mobile_number": "9154960548", "posted_by": "Smt.N.Lakshmi Priya I/C", "remarks": "Transfar", "status": "Open", "time_stamp": "06-MAY-2025 22:59:30"} |
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)
);