home / pf

albums_artists

5 rows where artist_id = 9739

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
20759 20759 20601 20601 9739 9739
23991 23991 23879 23879 9739 9739
26041 26041 25942 25942 9739 9739
26295 26295 26192 26192 9739 9739
26352 26352 26246 26246 9739 9739

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