home / pf

albums_artists

7 rows where artist_id = 3602

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5151 5151 4908 4908 3602 3602
13924 13924 13566 13566 3602 3602
14296 14296 13938 13938 3602 3602
15175 15175 14830 14830 3602 3602
16689 16689 16379 16379 3602 3602
17429 17429 17136 17136 3602 3602
18535 18535 18276 18276 3602 3602

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