home / pf

albums_artists

4 rows where artist_id = 3647

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5251 5251 5006 5006 3647 3647
7066 7066 6769 6769 3647 3647
11252 11252 10915 10915 3647 3647
27451 27451 27276 27276 3647 3647

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