2 rows where publisher = 19

View and edit SQL

id ▼ name publisher extern
33 inovisco Mobile Media GmbH inovisco Mobile Media GmbH 19 1
71 inovisco Mobile Media GmbH (1) inovisco Mobile Media GmbH 19 0

Advanced export

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

CSV options:

CREATE TABLE spotset (
	id INTEGER NOT NULL, 
	name VARCHAR(250), 
	publisher INTEGER, 
	extern BOOLEAN, 
	PRIMARY KEY (id), 
	UNIQUE (id), 
	FOREIGN KEY(publisher) REFERENCES publisher (id)
);
CREATE UNIQUE INDEX ix_spotset_name ON spotset (name);
CREATE INDEX ix_spotset_extern ON spotset (extern);
CREATE INDEX ix_spotset_publisher ON spotset (publisher);