home / pf

albums_artists

4 rows where artist_id = 9412

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19753 19753 19557 19557 9412 9412
20793 20793 20636 20636 9412 9412
22103 22103 22006 22006 9412 9412
22389 22389 22297 22297 9412 9412

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