home / pf

albums_artists

6 rows where artist_id = 685

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
710 710 677 677 685 685
5361 5361 5109 5109 685 685
9491 9491 9144 9144 685 685
13363 13363 13012 13012 685 685
13880 13880 13523 13523 685 685
16543 16543 16230 16230 685 685

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