home / pf

albums_artists

4 rows where artist_id = 3778

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5510 5510 5254 5254 3778 3778
5982 5982 5711 5711 3778 3778
7662 7662 7356 7356 3778 3778
9640 9640 9293 9293 3778 3778

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.656ms