SubDistricts
3 rows where district_id = 335
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 154 | ดอกไม้ | 10250 | ประเวศ 335 |
| 155 | ประเวศ | 10250 | ประเวศ 335 |
| 156 | หนองบอน | 10250 | ประเวศ 335 |
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)
);