home / pf

albums_artists

4 rows where artist_id = 6623

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12051 12051 11710 11710 6623 6623
16618 16618 16307 16307 6623 6623
17124 17124 16827 16827 6623 6623
21766 21766 21658 21658 6623 6623

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