home / pf

albums_artists

4 rows where artist_id = 3584

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5109 5109 4866 4866 3584 3584
6090 6090 5813 5813 3584 3584
6924 6924 6625 6625 3584 3584
7674 7674 7368 7368 3584 3584

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