home / pf

albums_artists

4 rows where artist_id = 3630

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5206 5206 4962 4962 3630 3630
6567 6567 6278 6278 3630 3630
9002 9002 8662 8662 3630 3630
10263 10263 9922 9922 3630 3630

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