home / pf

albums_artists

3 rows where artist_id = 2589

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3258 3258 3075 3075 2589 2589
13132 13132 12793 12793 2589 2589
13966 13966 13610 13610 2589 2589

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