home / pf

albums_artists

5 rows where artist_id = 9337

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19537 19537 19324 19324 9337 9337
20587 20587 20426 20426 9337 9337
22285 22285 22194 22194 9337 9337
22825 22825 22734 22734 9337 9337
24759 24759 24642 24642 9337 9337

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