home / pf

albums_artists

5 rows where artist_id = 1465

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1621 1621 1531 1531 1465 1465
2100 2100 1971 1971 1465 1465
2920 2920 2751 2751 1465 1465
3232 3232 3049 3049 1465 1465
6051 6051 5777 5777 1465 1465

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