home / pf

albums_artists

5 rows where artist_id = 8000

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15958 15958 15619 15619 8000 8000
18276 18276 17997 17997 8000 8000
20666 20666 20504 20504 8000 8000
22118 22118 22021 22021 8000 8000
23536 23536 23432 23432 8000 8000

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