home / pf

albums_artists

5 rows where artist_id = 8072

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16131 16131 15804 15804 8072 8072
18728 18728 18484 18484 8072 8072
20614 20614 20450 20450 8072 8072
22375 22375 22284 22284 8072 8072
23011 23011 22916 22916 8072 8072

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE albums_artists (
	album_id integer NOT NULL,
	artist_id integer NOT NULL,
	FOREIGN KEY(artist_id) REFERENCES artists(id),
	FOREIGN KEY(album_id) REFERENCES albums(id),
	UNIQUE(album_id, artist_id)
);
Powered by Datasette · Queries took 62.089ms