home / pf

albums_artists

4 rows where artist_id = 5502

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9480 9480 9133 9133 5502 5502
11000 11000 10658 10658 5502 5502
12994 12994 12651 12651 5502 5502
14927 14927 14581 14581 5502 5502

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