4 rows where network_id = "7.2"

View and edit SQL

Link building network_id
DOR-208 Doorshow Hotel 7.2
DOR-217 Doorshow Hotel 7.2
DOR-300 Doorshow Hotel 7.2
DOR-301 Doorshow Hotel 7.2

Advanced export

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

CSV options:

CREATE TABLE building_networks (
	building VARCHAR(100) NOT NULL, 
	network_id VARCHAR(100) NOT NULL, 
	PRIMARY KEY (building, network_id), 
	FOREIGN KEY(building) REFERENCES building (id), 
	FOREIGN KEY(network_id) REFERENCES network (id)
);