SubDistricts
4 rows where district_id = 210
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 6191 | นายูง | 41380 | นายูง 210 |
| 6192 | นาแค | 41380 | นายูง 210 |
| 6193 | บ้านก้อง | 41380 | นายูง 210 |
| 6194 | โนนทอง | 41380 | นายูง 210 |
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)
);