home / pf

albums_artists

4 rows where artist_id = 2725

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3491 3491 3295 3295 2725 2725
4457 4457 4243 4243 2725 2725
7621 7621 7314 7314 2725 2725
10719 10719 10384 10384 2725 2725

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