home / pf

albums_artists

4 rows where artist_id = 1961

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2287 2287 2144 2144 1961 1961
12103 12103 11764 11764 1961 1961
22064 22064 21967 21967 1961 1961
24337 24337 24224 24224 1961 1961

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