home / pf

albums_artists

5 rows where artist_id = 2239

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2712 2712 2550 2550 2239 2239
6716 6716 6425 6425 2239 2239
11669 11669 11332 11332 2239 2239
14263 14263 13906 13906 2239 2239
16450 16450 16137 16137 2239 2239

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