home / pf

albums_artists

5 rows where artist_id = 631

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
652 652 625 625 631 631
1375 1375 1294 1294 631 631
3712 3712 3513 3513 631 631
5909 5909 5640 5640 631 631
6987 6987 6688 6688 631 631

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