home / pf

albums_artists

6 rows where artist_id = 3109

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4182 4182 3980 3980 3109 3109
10627 10627 10293 10293 3109 3109
14349 14349 13990 13990 3109 3109
14903 14903 14556 14556 3109 3109
15424 15424 15081 15081 3109 3109
16497 16497 16183 16183 3109 3109

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