home / pf

albums_artists

6 rows where artist_id = 4902

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8067 8067 7754 7754 4902 4902
14163 14163 13806 13806 4902 4902
14164 14164 13807 13807 4902 4902
14165 14165 13808 13808 4902 4902
19657 19657 19456 19456 4902 4902
25383 25383 25287 25287 4902 4902

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