home / pf

albums_artists

4 rows where artist_id = 3983

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5919 5919 5651 5651 3983 3983
8345 8345 8022 8022 3983 3983
10421 10421 10080 10080 3983 3983
17262 17262 16959 16959 3983 3983

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