home / pf

albums_artists

4 rows where artist_id = 3675

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5298 5298 5050 5050 3675 3675
9363 9363 9014 9014 3675 3675
11509 11509 11172 11172 3675 3675
13725 13725 13371 13371 3675 3675

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