home / pf

albums_artists

4 rows where artist_id = 360

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
368 368 350 350 360 360
6901 6901 6602 6602 360 360
17814 17814 17523 17523 360 360
20701 20701 20540 20540 360 360

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