home / pf

albums_artists

4 rows where artist_id = 474

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
486 486 465 465 474 474
3455 3455 3261 3261 474 474
4688 4688 4472 4472 474 474
13678 13678 13327 13327 474 474

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