home / pf

albums_artists

5 rows where artist_id = 9277

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19391 19391 19175 19175 9277 9277
19392 19392 19176 19176 9277 9277
19393 19393 19177 19177 9277 9277
26952 26952 26807 26807 9277 9277
27360 27360 27189 27189 9277 9277

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