home / pf

albums_artists

5 rows where artist_id = 8510

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17297 17297 16994 16994 8510 8510
21994 21994 21894 21894 8510 8510
24617 24617 24495 24495 8510 8510
25955 25955 25856 25856 8510 8510
26345 26345 26239 26239 8510 8510

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