home / pf

albums_artists

4 rows where artist_id = 5058

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8450 8450 8122 8122 5058 5058
10123 10123 9783 9783 5058 5058
13004 13004 12662 12662 5058 5058
13140 13140 12801 12801 5058 5058

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