home / pf

albums_artists

5 rows where artist_id = 8729

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17835 17835 17543 17543 8729 8729
21539 21539 21419 21419 8729 8729
22505 22505 22409 22409 8729 8729
23235 23235 23131 23131 8729 8729
24972 24972 24864 24864 8729 8729

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