screen
2 rows where building = "ATV-88380"
This data as json, copyable, CSV (advanced)
| id ▼ | title | name_publisher | building | network |
|---|---|---|---|---|
| 10014526 | 10014526 - Cardio Bereich | Cardio Bereich | ATV-88380 | 1 |
| 10014527 | 10014527 - Gym / Geräte Bereich | Gym / Geräte Bereich | ATV-88380 | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE screen ( id VARCHAR(8) NOT NULL, title VARCHAR(250), name_publisher VARCHAR(250), building VARCHAR, network VARCHAR, PRIMARY KEY (id), UNIQUE (id), FOREIGN KEY(building) REFERENCES building (id), FOREIGN KEY(network) REFERENCES network (id) ); CREATE INDEX ix_screen_name_publisher ON screen (name_publisher); CREATE INDEX ix_screen_network ON screen (network); CREATE INDEX ix_screen_building ON screen (building);