home / pf

albums_artists

4 rows where artist_id = 9005

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
18602 18602 18350 18350 9005 9005
21277 21277 21153 21153 9005 9005
22957 22957 22861 22861 9005 9005
25273 25273 25170 25170 9005 9005

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