home / pf

albums_artists

5 rows where artist_id = 897

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
937 937 886 886 897 897
18534 18534 18275 18275 897 897
21952 21952 21852 21852 897 897
22418 22418 22323 22323 897 897
25885 25885 25787 25787 897 897

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