home / pf

albums_artists

3 rows where artist_id = 2177

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2615 2615 2462 2462 2177 2177
17542 17542 17248 17248 2177 2177
18841 18841 18597 18597 2177 2177

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.656ms