home / pf

albums_artists

5 rows where artist_id = 8921

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
18376 18376 18102 18102 8921 8921
19353 19353 19136 19136 8921 8921
21329 21329 21204 21204 8921 8921
25720 25720 25620 25620 8921 8921
26257 26257 26155 26155 8921 8921

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