home / pf

albums_artists

7 rows where artist_id = 687

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
712 712 679 679 687 687
5069 5069 4828 4828 687 687
9407 9407 9059 9059 687 687
16525 16525 16211 16211 687 687
20245 20245 20070 20070 687 687
21175 21175 21048 21048 687 687
21618 21618 21504 21504 687 687

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