home / pf

albums_artists

4 rows where artist_id = 4551

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7215 7215 6916 6916 4551 4551
9910 9910 9564 9564 4551 4551
11258 11258 10921 10921 4551 4551
14265 14265 13908 13908 4551 4551

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