home / pf

albums_artists

4 rows where artist_id = 309

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
316 316 302 302 309 309
3638 3638 3443 3443 309 309
5496 5496 5240 5240 309 309
6611 6611 6322 6322 309 309

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