home / pf

albums_artists

4 rows where artist_id = 2631

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3335 3335 3150 3150 2631 2631
9355 9355 9006 9006 2631 2631
12720 12720 12381 12381 2631 2631
15611 15611 15273 15273 2631 2631

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