home / pf

albums_artists

4 rows where artist_id = 1077

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1149 1149 1081 1081 1077 1077
10807 10807 10470 10470 1077 1077
13264 13264 12920 12920 1077 1077
23142 23142 23041 23041 1077 1077

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