SubDistricts
4 rows where district_id = 545
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 4532 | นายาง | 52170 | สบปราบ 545 |
| 4533 | สบปราบ | 52170 | สบปราบ 545 |
| 4534 | สมัย | 52170 | สบปราบ 545 |
| 4535 | แม่กัวะ | 52170 | สบปราบ 545 |
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)
);