home / pf

albums_artists

5 rows where artist_id = 2117

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2520 2520 2368 2368 2117 2117
6528 6528 6238 6238 2117 2117
8353 8353 8029 8029 2117 2117
10015 10015 9670 9670 2117 2117
11627 11627 11290 11290 2117 2117

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