home / pf

albums_artists

5 rows where artist_id = 9041

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
18718 18718 18474 18474 9041 9041
20392 20392 20225 20225 9041 9041
21818 21818 21715 21715 9041 9041
22714 22714 22622 22622 9041 9041
23438 23438 23334 23334 9041 9041

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