home / pf

albums_artists

4 rows where artist_id = 10151

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
22131 22131 22035 22035 10151 10151
24833 24833 24717 24717 10151 10151
25850 25850 25751 25751 10151 10151
26223 26223 26121 26121 10151 10151

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