home / pf

albums_artists

5 rows where artist_id = 2110

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2506 2506 2355 2355 2110 2110
5062 5062 4821 4821 2110 2110
5835 5835 5568 5568 2110 2110
8148 8148 7829 7829 2110 2110
9884 9884 9537 9537 2110 2110

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