home / pf

albums_artists

6 rows where artist_id = 953

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1003 1003 947 947 953 953
12247 12247 11910 11910 953 953
16520 16520 16206 16206 953 953
17944 17944 17652 17652 953 953
18196 18196 17914 17914 953 953
19721 19721 19525 19525 953 953

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