SubDistricts
5 rows where district_id = 891
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 5895 | คำผง | 32130 | โนนนารายณ์ 891 |
| 5896 | ระเวียง | 32130 | โนนนารายณ์ 891 |
| 5897 | หนองหลวง | 32130 | โนนนารายณ์ 891 |
| 5898 | หนองเทพ | 32130 | โนนนารายณ์ 891 |
| 5899 | โนน | 32130 | โนนนารายณ์ 891 |
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)
);