home / pf

albums_artists

5 rows where artist_id = 844

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
883 883 836 836 844 844
5096 5096 4853 4853 844 844
6703 6703 6412 6412 844 844
8578 8578 8245 8245 844 844
11178 11178 10839 10839 844 844

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