home / pf

albums_artists

4 rows where artist_id = 989

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1043 1043 986 986 989 989
2438 2438 2287 2287 989 989
5573 5573 5314 5314 989 989
8829 8829 8498 8498 989 989

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