SubDistricts
3 rows where district_id = 242
This data as json, CSV (advanced)
Suggested facets: name, zipcode
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 112 | คลองจั่น | 10240 | บางกะปิ 242 |
| 113 | หัวหมาก | 10240 | บางกะปิ 242 |
| 114 | หัวหมาก | 10250 | บางกะปิ 242 |
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)
);