home / pf

albums_artists

4 rows where artist_id = 9615

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
20396 20396 20229 20229 9615 9615
21118 21118 20984 20984 9615 9615
25626 25626 25528 25528 9615 9615
25936 25936 25837 25837 9615 9615

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