home / pf

albums_artists

6 rows where artist_id = 469

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
481 481 461 461 469 469
2594 2594 2442 2442 469 469
9809 9809 9463 9463 469 469
15254 15254 14909 14909 469 469
21858 21858 21754 21754 469 469
26400 26400 26294 26294 469 469

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