home / pf

albums_artists

5 rows where artist_id = 6654

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12129 12129 11790 11790 6654 6654
18914 18914 18673 18673 6654 6654
21356 21356 21233 21233 6654 6654
22767 22767 22677 22677 6654 6654
24665 24665 24542 24542 6654 6654

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