home / pf

albums_artists

4 rows where artist_id = 4170

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6390 6390 6100 6100 4170 4170
6809 6809 6512 6512 4170 4170
14530 14530 14174 14174 4170 4170
16873 16873 16563 16563 4170 4170

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