home / pf

albums_artists

4 rows where artist_id = 1987

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2331 2331 2187 2187 1987 1987
8594 8594 8260 8260 1987 1987
10568 10568 10230 10230 1987 1987
15174 15174 14829 14829 1987 1987

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