home / pf

albums_artists

4 rows where artist_id = 4355

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6791 6791 6493 6493 4355 4355
16530 16530 16216 16216 4355 4355
19264 19264 19045 19045 4355 4355
22249 22249 22158 22158 4355 4355

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