SubDistricts
4 rows where district_id = 279
This data as json, CSV (advanced)
Suggested facets: name, zipcode
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 142 | คลองกุ่ม | 10230 | บึงกุ่ม 279 |
| 143 | คลองกุ่ม | 10240 | บึงกุ่ม 279 |
| 144 | นวมินทร์ | 10230 | บึงกุ่ม 279 |
| 145 | นวลจันทร์ | 10230 | บึงกุ่ม 279 |
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)
);