home / pf

albums_artists

3 rows where artist_id = 6999

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13065 13065 12728 12728 6999 6999
13066 13066 12729 12729 6999 6999
13067 13067 12730 12730 6999 6999

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