home / pf

albums_artists

4 rows where artist_id = 9649

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
20501 20501 20337 20337 9649 9649
21885 21885 21781 21781 9649 9649
24244 24244 24135 24135 9649 9649
24908 24908 24798 24798 9649 9649

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