home / pf

albums_artists

4 rows where artist_id = 764

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
794 794 754 754 764 764
1694 1694 1596 1596 764 764
2281 2281 2138 2138 764 764
2282 2282 2139 2139 764 764

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