SubDistricts
4 rows where district_id = 844
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 2785 | ดงพลอง | 31150 | แคนดง 844 |
| 2786 | สระบัว | 31150 | แคนดง 844 |
| 2787 | หัวฝาย | 31150 | แคนดง 844 |
| 2788 | แคนดง | 31150 | แคนดง 844 |
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)
);