home / pf

albums_artists

4 rows where artist_id = 2519

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3151 3151 2973 2973 2519 2519
6228 6228 5947 5947 2519 2519
7059 7059 6762 6762 2519 2519
26690 26690 26563 26563 2519 2519

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