spotset
2 rows where publisher = 18
This data as json, copyable, CSV (advanced)
| id ▼ | name | publisher | extern |
|---|---|---|---|
| 31 | echion Corporate Communication AG | echion Corporate Communication AG 18 | 1 |
| 62 | echion Corporate Communication AG (1) | echion Corporate Communication AG 18 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
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_publisher ON spotset (publisher); CREATE INDEX ix_spotset_extern ON spotset (extern);