SubDistricts
3 rows where district_id = 461
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 405 | ร่องคำ | 46210 | ร่องคำ 461 |
| 406 | สามัคคี | 46210 | ร่องคำ 461 |
| 407 | เหล่าอ้อย | 46210 | ร่องคำ 461 |
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)
);