home / pf

albums_artists

6 rows where artist_id = 562

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
579 579 555 555 562 562
2111 2111 1982 1982 562 562
2357 2357 2211 2211 562 562
16394 16394 16081 16081 562 562
18453 18453 18185 18185 562 562
20765 20765 20607 20607 562 562

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