home / pf

albums_artists

4 rows where artist_id = 10024

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21675 21675 21564 21564 10024 10024
23095 23095 22995 22995 10024 10024
23400 23400 23297 23297 10024 10024
25230 25230 25125 25125 10024 10024

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