2 rows where touchpoint = 19

View and edit SQL

id ▼ title touchpoint publisher count_locations count_screens extern order
DB_0_000 Public Video Campus Universität/ Hochschule 19 Edgar Ambient Media Group GmbH 4 350 508 1 56
EQ_0_000 UniScreens Deutschland Universität/ Hochschule 19 Diverse 3 205 518 1 82

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);