home / pf

albums_artists

5 rows where artist_id = 7680

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14987 14987 14638 14638 7680 7680
17155 17155 16855 16855 7680 7680
17358 17358 17060 17060 7680 7680
20328 20328 20158 20158 7680 7680
24104 24104 23994 23994 7680 7680

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.345ms