home / pf

albums_artists

4 rows where artist_id = 1827

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2103 2103 1974 1974 1827 1827
13205 13205 12863 12863 1827 1827
15414 15414 15071 15071 1827 1827
20572 20572 20411 20411 1827 1827

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