home / pf

albums_artists

5 rows where artist_id = 9430

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19821 19821 19626 19626 9430 9430
22879 22879 22785 22785 9430 9430
23825 23825 23715 23715 9430 9430
25683 25683 25583 25583 9430 9430
25982 25982 25883 25883 9430 9430

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