home / pf

albums_artists

6 rows where artist_id = 9249

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19304 19304 19086 19086 9249 9249
19683 19683 19484 19484 9249 9249
22255 22255 22164 22164 9249 9249
22256 22256 22165 22165 9249 9249
23811 23811 23700 23700 9249 9249
24434 24434 24323 24323 9249 9249

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 54.042ms