2 rows where publisher = 16

View and edit SQL

id ▼ title touchpoint publisher count_locations count_screens extern order
EF_1_000 X-City Hannover Station U-Bahnhof 18 X-City Marketing 16 6 33 1 76
EF_2_000 X-City Hannover Fahrgastfernsehen Fahrgastfernsehen 7 X-City Marketing 16 296 1437 1 77

Advanced export

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

CSV options:

CREATE TABLE media (
	id VARCHAR(8) NOT NULL, 
	title VARCHAR(250), 
	touchpoint INTEGER, 
	publisher INTEGER, 
	count_locations INTEGER, 
	count_screens INTEGER, 
	extern BOOLEAN, 
	"order" INTEGER, 
	PRIMARY KEY (id), 
	UNIQUE (id), 
	FOREIGN KEY(touchpoint) REFERENCES touchpoint (id), 
	FOREIGN KEY(publisher) REFERENCES publisher (id)
);
CREATE INDEX ix_media_publisher ON media (publisher);
CREATE INDEX ix_media_extern ON media (extern);
CREATE INDEX ix_media_touchpoint ON media (touchpoint);