home / pf

albums_artists

5 rows where artist_id = 3254

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4429 4429 4216 4216 3254 3254
6294 6294 6008 6008 3254 3254
6295 6295 6009 6009 3254 3254
6296 6296 6010 6010 3254 3254
9027 9027 8687 8687 3254 3254

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