home / pf

albums_artists

4 rows where artist_id = 2786

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3604 3604 3409 3409 2786 2786
7054 7054 6757 6757 2786 2786
21664 21664 21552 21552 2786 2786
24736 24736 24617 24617 2786 2786

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