home / pf

albums_artists

5 rows where artist_id = 6010

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10642 10642 10308 10308 6010 6010
12837 12837 12494 12494 6010 6010
14541 14541 14185 14185 6010 6010
15153 15153 14807 14807 6010 6010
16309 16309 15995 15995 6010 6010

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