home / pf

albums_artists

4 rows where artist_id = 2140

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2562 2562 2410 2410 2140 2140
6328 6328 6041 6041 2140 2140
11444 11444 11106 11106 2140 2140
14389 14389 14031 14031 2140 2140

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