home / pf

albums_artists

5 rows where artist_id = 2417

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2996 2996 2824 2824 2417 2417
5336 5336 5086 5086 2417 2417
5403 5403 5151 5151 2417 2417
6389 6389 6099 6099 2417 2417
9572 9572 9226 9226 2417 2417

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