home / pf

albums_artists

5 rows where artist_id = 7003

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13074 13074 12737 12737 7003 7003
13994 13994 13639 13639 7003 7003
14901 14901 14554 14554 7003 7003
18873 18873 18630 18630 7003 7003
20899 20899 20750 20750 7003 7003

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.863ms