home / MAAudioHG

Menu
  • Log in

publisher

5 rows

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ name position
1 ad.audio 1
2 ARD MEDIA 2
3 Energy 3
4 RMS 4
5 Spotify 5

Advanced export

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

CSV options:

CREATE TABLE publisher (
	id INTEGER NOT NULL, 
	name VARCHAR(250), 
	position INTEGER, 
	PRIMARY KEY (id), 
	UNIQUE (id), 
	UNIQUE (name)
);
CREATE INDEX ix_publisher_position ON publisher (position);
Powered by Datasette · Queries took 1.2ms