home / pf

albums_artists

6 rows where artist_id = 9546

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
20152 20152 19975 19975 9546 9546
22454 22454 22359 22359 9546 9546
23032 23032 22936 22936 9546 9546
24379 24379 24266 24266 9546 9546
26057 26057 25958 25958 9546 9546
26361 26361 26255 26255 9546 9546

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