home / pf

albums_artists

5 rows where artist_id = 5298

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9012 9012 8672 8672 5298 5298
11934 11934 11591 11591 5298 5298
12520 12520 12181 12181 5298 5298
15091 15091 14746 14746 5298 5298
17068 17068 16765 16765 5298 5298

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