6 rows where publisher = 7

View and edit SQL

Suggested facets: extern

id ▼ name publisher extern
12 Goldbach Germany Goldbach Germany 7 1
13 Goldbach Germany (1) Goldbach Germany 7 1
14 Goldbach Germany (2) Goldbach Germany 7 1
15 Goldbach Germany (3) Goldbach Germany 7 1
44 Goldbach Germany (4) Goldbach Germany 7 0
45 Goldbach Germany (5) Goldbach Germany 7 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 INDEX ix_spotset_publisher ON spotset (publisher);
CREATE INDEX ix_spotset_extern ON spotset (extern);
CREATE UNIQUE INDEX ix_spotset_name ON spotset (name);