home / pf

albums_artists

5 rows where artist_id = 8332

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16821 16821 16513 16513 8332 8332
18625 18625 18374 18374 8332 8332
19946 19946 19758 19758 8332 8332
22480 22480 22384 22384 8332 8332
23381 23381 23279 23279 8332 8332

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