home / pf

albums_artists

7 rows where artist_id = 2672

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3404 3404 3212 3212 2672 2672
6341 6341 6053 6053 2672 2672
8229 8229 7909 7909 2672 2672
15508 15508 15166 15166 2672 2672
17975 17975 17684 17684 2672 2672
21235 21235 21110 21110 2672 2672
21523 21523 21402 21402 2672 2672

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