home / pf

albums_artists

4 rows where artist_id = 8732

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17840 17840 17548 17548 8732 8732
20543 20543 20381 20381 8732 8732
23173 23173 23072 23072 8732 8732
23859 23859 23747 23747 8732 8732

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