home / pf

albums_artists

5 rows where artist_id = 8077

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16150 16150 15826 15826 8077 8077
17356 17356 17057 17057 8077 8077
19825 19825 19630 19630 8077 8077
21181 21181 21054 21054 8077 8077
21182 21182 21055 21055 8077 8077

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