home / pf

albums_artists

5 rows where artist_id = 997

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1052 1052 995 995 997 997
7231 7231 6933 6933 997 997
23110 23110 23009 23009 997 997
25139 25139 25033 25033 997 997
27548 27548 27362 27362 997 997

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.64ms