home / pf

albums_artists

4 rows where artist_id = 2035

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2397 2397 2248 2248 2035 2035
8011 8011 7698 7698 2035 2035
16254 16254 15932 15932 2035 2035
18621 18621 18370 18370 2035 2035

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