home / pf

albums_artists

4 rows where artist_id = 9101

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
18913 18913 18672 18672 9101 9101
19960 19960 19772 19772 9101 9101
22574 22574 22480 22480 9101 9101
25079 25079 24974 24974 9101 9101

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