home / pf

albums_artists

4 rows where artist_id = 645

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
667 667 640 640 645 645
3878 3878 3673 3673 645 645
26841 26841 26703 26703 645 645
27638 27638 27445 27445 645 645

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