home / pf

albums_artists

5 rows where artist_id = 5113

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8576 8576 8244 8244 5113 5113
8894 8894 8560 8560 5113 5113
10928 10928 10587 10587 5113 5113
20401 20401 20235 20235 5113 5113
24480 24480 24364 24364 5113 5113

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