home / pf

albums_artists

5 rows where artist_id = 8674

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17724 17724 17428 17428 8674 8674
20238 20238 20062 20062 8674 8674
22950 22950 22854 22854 8674 8674
25051 25051 24945 24945 8674 8674
26224 26224 26122 26122 8674 8674

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