home / pf

albums_artists

4 rows where artist_id = 2852

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3723 3723 3524 3524 2852 2852
13029 13029 12689 12689 2852 2852
13685 13685 13333 13333 2852 2852
14339 14339 13982 13982 2852 2852

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