home / pf

albums_artists

5 rows where artist_id = 10628

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
23514 23514 23409 23409 10628 10628
23882 23882 23770 23770 10628 10628
25432 25432 25332 25332 10628 10628
25809 25809 25710 25710 10628 10628
26202 26202 26100 26100 10628 10628

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