home / pf

albums_artists

4 rows where artist_id = 3890

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5724 5724 5461 5461 3890 3890
14537 14537 14181 14181 3890 3890
15256 15256 14911 14911 3890 3890
22271 22271 22180 22180 3890 3890

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