home / pf

albums_artists

4 rows where artist_id = 3820

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5598 5598 5338 5338 3820 3820
8726 8726 8393 8393 3820 3820
11914 11914 11571 11571 3820 3820
14258 14258 13900 13900 3820 3820

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