home / pf

albums_artists

4 rows where artist_id = 7502

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14466 14466 14108 14108 7502 7502
16140 16140 15815 15815 7502 7502
20897 20897 20747 20747 7502 7502
22531 22531 22437 22437 7502 7502

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