home / pf

albums_artists

6 rows where artist_id = 8513

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17301 17301 16998 16998 8513 8513
18556 18556 18299 18299 8513 8513
19771 19771 19575 19575 8513 8513
21794 21794 21688 21688 8513 8513
23668 23668 23561 23561 8513 8513
25549 25549 25450 25450 8513 8513

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