3 rows where publisher = 10

View and edit SQL

Suggested facets: extern

id ▼ name publisher extern
16 Hygh Mobile Media GmbH Hygh Mobile Media GmbH 10 1
55 Hygh Mobile Media GmbH (1) Hygh Mobile Media GmbH 10 0
56 Hygh Mobile Media GmbH (2) Hygh Mobile Media GmbH 10 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);