home / pf

albums_artists

4 rows where artist_id = 3475

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4853 4853 4628 4628 3475 3475
16184 16184 15862 15862 3475 3475
21792 21792 21686 21686 3475 3475
25005 25005 24898 24898 3475 3475

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