home / pf

albums_artists

4 rows where artist_id = 2578

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3242 3242 3059 3059 2578 2578
6364 6364 6075 6075 2578 2578
10347 10347 10005 10005 2578 2578
11297 11297 10961 10961 2578 2578

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