home / pf

albums_artists

3 rows where artist_id = 3534

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4994 4994 4757 4757 3534 3534
10859 10859 10521 10521 3534 3534
12532 12532 12193 12193 3534 3534

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