home / pf

albums_artists

3 rows where artist_id = 1001

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1056 1056 999 999 1001 1001
6529 6529 6240 6240 1001 1001
9965 9965 9620 9620 1001 1001

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