SubDistricts
5 rows where district_id = 518
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 5820 | ณรงค์ | 32150 | ศรีณรงค์ 518 |
| 5821 | ตรวจ | 32150 | ศรีณรงค์ 518 |
| 5822 | ศรีสุข | 32150 | ศรีณรงค์ 518 |
| 5823 | หนองแวง | 32150 | ศรีณรงค์ 518 |
| 5824 | แจนแวน | 32150 | ศรีณรงค์ 518 |
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)
);