home / pf

albums_artists

5 rows where artist_id = 8657

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17693 17693 17398 17398 8657 8657
20400 20400 20234 20234 8657 8657
23215 23215 23111 23111 8657 8657
25917 25917 25819 25819 8657 8657
26220 26220 26118 26118 8657 8657

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