home / pf

albums_artists

5 rows where artist_id = 6385

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
11474 11474 11137 11137 6385 6385
15171 15171 14826 14826 6385 6385
18393 18393 18122 18122 6385 6385
20717 20717 20557 20557 6385 6385
26185 26185 26083 26083 6385 6385

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