home / pf

albums_artists

4 rows where artist_id = 4186

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6433 6433 6141 6141 4186 4186
9579 9579 9233 9233 4186 4186
12374 12374 12038 12038 4186 4186
16672 16672 16362 16362 4186 4186

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