3 rows where publisher = 8

View and edit SQL

id ▼ title touchpoint publisher count_locations count_screens extern order
EH_2_000 City Netzwerk POS - sonstige 14 HYGH AG 8 738 738 1 79
EH_3_000 Premium Netzwerk POS - sonstige 14 HYGH AG 8 46 143 1 80
EH_4_000 POS Netzwerk POS - sonstige 14 HYGH AG 8 675 675 1 81

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