home / pf

albums_artists

4 rows where artist_id = 3360

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4615 4615 4397 4397 3360 3360
7345 7345 7048 7048 3360 3360
14500 14500 14144 14144 3360 3360
14501 14501 14145 14145 3360 3360

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