1 row where touchpoint = 3

View and edit SQL

id ▼ title touchpoint publisher count_locations count_screens extern order
EB_0_000 TV Wartezimmer Arzt 3 TV Wartezimmer 13 6135 6135 1 75

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_extern ON media (extern);
CREATE INDEX ix_media_touchpoint ON media (touchpoint);
CREATE INDEX ix_media_publisher ON media (publisher);