home / pf

albums_artists

4 rows where artist_id = 935

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
979 979 923 923 935 935
2129 2129 1999 1999 935 935
3089 3089 2911 2911 935 935
3882 3882 3677 3677 935 935

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