home / pf

albums_artists

4 rows where artist_id = 822

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
857 857 811 811 822 822
2441 2441 2290 2290 822 822
4396 4396 4185 4185 822 822
8209 8209 7889 7889 822 822

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