SubDistricts
4 rows where district_id = 64
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 4879 | คำตากล้า | 47250 | คำตากล้า 64 |
| 4880 | นาแต้ | 47250 | คำตากล้า 64 |
| 4881 | หนองบัวสิม | 47250 | คำตากล้า 64 |
| 4882 | แพด | 47250 | คำตากล้า 64 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE SubDistricts(
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
zipcode TEXT NOT NULL,
district_id INTEGER NOT NULL,
FOREIGN KEY (district_id) REFERENCES Districts(id)
);