home / pf

albums_artists

4 rows where artist_id = 92

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
97 97 94 94 92 92
3651 3651 3455 3455 92 92
6513 6513 6222 6222 92 92
9578 9578 9232 9232 92 92

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