SubDistricts
3 rows where district_id = 294
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 4045 | บ้านฉาง | 21130 | บ้านฉาง 294 |
| 4046 | พลา | 21130 | บ้านฉาง 294 |
| 4047 | สำนักท้อน | 21130 | บ้านฉาง 294 |
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)
);