SubDistricts
4 rows where district_id = 486
This data as json, CSV (advanced)
Suggested facets: zipcode
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 3517 | บึงบัว | 66140 | วชิรบารมี 486 |
| 3518 | บ้านนา | 66140 | วชิรบารมี 486 |
| 3519 | วังโมกข์ | 66140 | วชิรบารมี 486 |
| 3520 | หนองหลุม | 66220 | วชิรบารมี 486 |
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)
);