home / pf

albums_artists

4 rows where artist_id = 8845

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
18150 18150 17866 17866 8845 8845
20316 20316 20146 20146 8845 8845
23608 23608 23505 23505 8845 8845
25225 25225 25119 25119 8845 8845

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