home / pf

albums_artists

4 rows where artist_id = 1456

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1612 1612 1522 1522 1456 1456
4072 4072 3872 3872 1456 1456
7256 7256 6960 6960 1456 1456
26826 26826 26690 26690 1456 1456

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.581ms