SubDistricts
4 rows where district_id = 273
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 138 | บางแค | 10160 | บางแค 273 |
| 139 | บางแคเหนือ | 10160 | บางแค 273 |
| 140 | บางไผ่ | 10160 | บางแค 273 |
| 141 | หลักสอง | 10160 | บางแค 273 |
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)
);