home / pf

albums_artists

4 rows where artist_id = 1706

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1938 1938 1826 1826 1706 1706
4999 4999 4762 4762 1706 1706
7844 7844 7530 7530 1706 1706
10091 10091 9746 9746 1706 1706

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