SubDistricts
4 rows where district_id = 10
This data as json, CSV (advanced)
| id ▼ | name | zipcode | district_id |
|---|---|---|---|
| 4996 | กระแสสินธุ์ | 90270 | กระแสสินธุ์ 10 |
| 4997 | เกาะใหญ่ | 90270 | กระแสสินธุ์ 10 |
| 4998 | เชิงแส | 90270 | กระแสสินธุ์ 10 |
| 4999 | โรง | 90270 | กระแสสินธุ์ 10 |
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)
);