home / pf

albums_artists

4 rows where artist_id = 6020

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10662 10662 10329 10329 6020 6020
12006 12006 11665 11665 6020 6020
16092 16092 15764 15764 6020 6020
17072 17072 16769 16769 6020 6020

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