home / pf

albums_artists

5 rows where artist_id = 7685

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15007 15007 14660 14660 7685 7685
17309 17309 17007 17007 7685 7685
18282 18282 18003 18003 7685 7685
22736 22736 22643 22643 7685 7685
23276 23276 23173 23173 7685 7685

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