home / pf

albums_artists

3 rows where artist_id = 2308

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2806 2806 2641 2641 2308 2308
7946 7946 7632 7632 2308 2308
25252 25252 25150 25150 2308 2308

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