home / pf

albums_artists

5 rows where artist_id = 9514

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
20067 20067 19885 19885 9514 9514
21856 21856 21752 21752 9514 9514
23325 23325 23221 23221 9514 9514
24448 24448 24337 24337 9514 9514
25151 25151 25046 25046 9514 9514

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