home / pf

albums_artists

4 rows where artist_id = 2001

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2345 2345 2199 2199 2001 2001
5691 5691 5428 5428 2001 2001
26569 26569 26457 26457 2001 2001
27444 27444 27270 27270 2001 2001

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