home / pf

albums_artists

4 rows where artist_id = 3588

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5117 5117 4874 4874 3588 3588
10172 10172 9832 9832 3588 3588
12669 12669 12329 12329 3588 3588
19133 19133 18909 18909 3588 3588

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