home / pf

albums_artists

5 rows where artist_id = 6441

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
11629 11629 11292 11292 6441 6441
13462 13462 13110 13110 6441 6441
14317 14317 13960 13960 6441 6441
15787 15787 15448 15448 6441 6441
19325 19325 19107 19107 6441 6441

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