home / pf

albums_artists

5 rows where artist_id = 733

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
763 763 724 724 733 733
1860 1860 1756 1756 733 733
2667 2667 2507 2507 733 733
3659 3659 3463 3463 733 733
7446 7446 7146 7146 733 733

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