home / pf

albums_artists

4 rows where artist_id = 1891

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2193 2193 2057 2057 1891 1891
7788 7788 7477 7477 1891 1891
21127 21127 20995 20995 1891 1891
26373 26373 26267 26267 1891 1891

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