home / pf

albums_artists

4 rows where artist_id = 4019

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5992 5992 5721 5721 4019 4019
10775 10775 10440 10440 4019 4019
14563 14563 14209 14209 4019 4019
17019 17019 16714 16714 4019 4019

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