home / pf

albums_artists

4 rows where artist_id = 8384

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16988 16988 16680 16680 8384 8384
19801 19801 19606 19606 8384 8384
21125 21125 20993 20993 8384 8384
23449 23449 23344 23344 8384 8384

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