home / pf

albums_artists

4 rows where artist_id = 1632

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1843 1843 1741 1741 1632 1632
14805 14805 14452 14452 1632 1632
15249 15249 14904 14904 1632 1632
19315 19315 19097 19097 1632 1632

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