home / pf

albums_artists

5 rows where artist_id = 10232

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
22363 22363 22271 22271 10232 10232
24938 24938 24829 24829 10232 10232
25480 25480 25379 25379 10232 10232
25819 25819 25720 25720 10232 10232
26207 26207 26105 26105 10232 10232

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.934ms