home / pf

albums_artists

3 rows where artist_id = 3848

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5645 5645 5382 5382 3848 3848
7582 7582 7275 7275 3848 3848
11025 11025 10684 10684 3848 3848

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