home / pf

albums_artists

4 rows where artist_id = 10883

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
24211 24211 24100 24100 10883 10883
25553 25553 25454 25454 10883 10883
26064 26064 25965 25965 10883 10883
26297 26297 26194 26194 10883 10883

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