home / pf

albums_artists

3 rows where artist_id = 4956

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8200 8200 7880 7880 4956 4956
12111 12111 11772 11772 4956 4956
13804 13804 13449 13449 4956 4956

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