SubDistricts
4 rows where district_id = 883
This data as json, CSV (advanced)
Suggested facets: zipcode
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 5452 | หนองม่วง | 27180 | โคกสูง 883 |
| 5453 | หนองแวง | 27180 | โคกสูง 883 |
| 5454 | โคกสูง | 27120 | โคกสูง 883 |
| 5455 | โนนหมากมุ่น | 27120 | โคกสูง 883 |
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)
);