home / pf

albums_artists

5 rows where artist_id = 1287

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1399 1399 1316 1316 1287 1287
4277 4277 4073 4073 1287 1287
6471 6471 6179 6179 1287 1287
8562 8562 8229 8229 1287 1287
26622 26622 26506 26506 1287 1287

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