SubDistricts
4 rows where district_id = 54
This data as json, CSV (advanced)
Suggested facets: name, zipcode
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 63 | คลองตัน | 10110 | คลองเตย 54 |
| 64 | คลองเตย | 10110 | คลองเตย 54 |
| 65 | พระโขนง | 10110 | คลองเตย 54 |
| 66 | พระโขนง | 10260 | คลองเตย 54 |
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)
);