home / pf

albums_artists

4 rows where artist_id = 1064

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1128 1128 1065 1065 1064 1064
3672 3672 3474 3474 1064 1064
4564 4564 4348 4348 1064 1064
9385 9385 9037 9037 1064 1064

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