home / pf

albums_artists

4 rows where artist_id = 541

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
556 556 533 533 541 541
3937 3937 3735 3735 541 541
8519 8519 8187 8187 541 541
26823 26823 26687 26687 541 541

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