home / pf

albums_artists

4 rows where artist_id = 4786

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7778 7778 7469 7469 4786 4786
10396 10396 10055 10055 4786 4786
14085 14085 13730 13730 4786 4786
17094 17094 16792 16792 4786 4786

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