home / pf

albums_artists

5 rows where artist_id = 2517

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3148 3148 2970 2970 2517 2517
7184 7184 6885 6885 2517 2517
9399 9399 9051 9051 2517 2517
11900 11900 11558 11558 2517 2517
14096 14096 13741 13741 2517 2517

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.419ms