home / pf

albums_artists

5 rows where artist_id = 4465

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7008 7008 6709 6709 4465 4465
9637 9637 9290 9290 4465 4465
13005 13005 12663 12663 4465 4465
16834 16834 16525 16525 4465 4465
17474 17474 17180 17180 4465 4465

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