home / pf

albums_artists

5 rows where artist_id = 812

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
846 846 800 800 812 812
1629 1629 1538 1538 812 812
2398 2398 2249 2249 812 812
7017 7017 6718 6718 812 812
26792 26792 26658 26658 812 812

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