home / pf

albums_artists

3 rows where artist_id = 2590

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3261 3261 3078 3078 2590 2590
4474 4474 4258 4258 2590 2590
25817 25817 25718 25718 2590 2590

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