home / pf

albums_artists

5 rows where artist_id = 592

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
612 612 588 588 592 592
8526 8526 8194 8194 592 592
10003 10003 9657 9657 592 592
10933 10933 10592 10592 592 592
11380 11380 11041 11041 592 592

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