home / pf

albums_artists

5 rows where artist_id = 8083

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16158 16158 15835 15835 8083 8083
18406 18406 18136 18136 8083 8083
18407 18407 18137 18137 8083 8083
20388 20388 20221 20221 8083 8083
21477 21477 21358 21358 8083 8083

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