home / pf

albums_artists

5 rows where artist_id = 395

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
404 404 387 387 395 395
1296 1296 1217 1217 395 395
2347 2347 2201 2201 395 395
3243 3243 3060 3060 395 395
4214 4214 4012 4012 395 395

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