4 rows where parent = 41

View and edit SQL

id ▼ parent name
42 41 Mobility Channel Bistro
43 41 Mobility Channel Eingang - Indoor
44 41 Mobility Channel Eingang - Outdoor
45 41 Mobility Channel Kasse

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE network (
	id INTEGER NOT NULL, 
	parent VARCHAR, 
	name VARCHAR(250), 
	PRIMARY KEY (id), 
	UNIQUE (id), 
	FOREIGN KEY(parent) REFERENCES network (id)
);
CREATE INDEX ix_network_parent ON network (parent);
CREATE UNIQUE INDEX ix_network_name ON network (name);