home / pf

albums_artists

5 rows where artist_id = 517

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
530 530 509 509 517 517
1994 1994 1879 1879 517 517
4213 4213 4011 4011 517 517
5221 5221 4976 4976 517 517
26897 26897 26755 26755 517 517

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.412ms