SubDistricts
3 rows where district_id = 728
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 1054 | กะบกเตี้ย | 17130 | เนินขาม 728 |
| 1055 | สุขเดือนห้า | 17130 | เนินขาม 728 |
| 1056 | เนินขาม | 17130 | เนินขาม 728 |
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)
);