home / pf

albums_artists

4 rows where artist_id = 4894

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8049 8049 7737 7737 4894 4894
9679 9679 9331 9331 4894 4894
19205 19205 18984 18984 4894 4894
24007 24007 23896 23896 4894 4894

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