network
3 rows where parent = 7
This data as json, copyable, CSV (advanced)
| id ▼ | parent | name |
|---|---|---|
| 8 | 7 | Autobahn Touchpoint Classic Gondel |
| 9 | 7 | Autobahn Touchpoint Classic Kasse |
| 10 | 7 | Autobahn Touchpoint Classic Kühltheke |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE network ( id INTEGER NOT NULL, parent VARCHAR, name VARCHAR(250), PRIMARY KEY (id), UNIQUE (id), FOREIGN KEY(parent) REFERENCES network (id) ); CREATE UNIQUE INDEX ix_network_name ON network (name); CREATE INDEX ix_network_parent ON network (parent);