SubDistricts
5 rows where district_id = 393
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 618 | ขามป้อม | 40320 | พระยืน 393 |
| 619 | บ้านโต้น | 40320 | พระยืน 393 |
| 620 | พระบุ | 40320 | พระยืน 393 |
| 621 | พระยืน | 40320 | พระยืน 393 |
| 622 | หนองแวง | 40320 | พระยืน 393 |
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)
);