home / pf

albums_artists

4 rows where artist_id = 5647

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9788 9788 9441 9441 5647 5647
12551 12551 12211 12211 5647 5647
13643 13643 13291 13291 5647 5647
27558 27558 27372 27372 5647 5647

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