home / pf

albums_artists

4 rows where artist_id = 6785

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12417 12417 12080 12080 6785 6785
13419 13419 13069 13069 6785 6785
16047 16047 15716 15716 6785 6785
18277 18277 17998 17998 6785 6785

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