home / pf

albums_artists

5 rows where artist_id = 4362

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6803 6803 6505 6505 4362 4362
12296 12296 11958 11958 4362 4362
14713 14713 14358 14358 4362 4362
15631 15631 15293 15293 4362 4362
26854 26854 26715 26715 4362 4362

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