home / pf

albums_artists

4 rows where artist_id = 5302

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9035 9035 8694 8694 5302 5302
17471 17471 17177 17177 5302 5302
20580 20580 20419 20419 5302 5302
22967 22967 22871 22871 5302 5302

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