home / pf

albums_artists

5 rows where artist_id = 5284

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8988 8988 8648 8648 5284 5284
15966 15966 15627 15627 5284 5284
19361 19361 19145 19145 5284 5284
19863 19863 19670 19670 5284 5284
23092 23092 22991 22991 5284 5284

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