home / pf

albums_artists

4 rows where artist_id = 4541

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7189 7189 6890 6890 4541 4541
11942 11942 11599 11599 4541 4541
13793 13793 13437 13437 4541 4541
15312 15312 14970 14970 4541 4541

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