home / pf

albums_artists

5 rows where artist_id = 4365

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6806 6806 6509 6509 4365 4365
9279 9279 8932 8932 4365 4365
11399 11399 11060 11060 4365 4365
15514 15514 15173 15173 4365 4365
16626 16626 16315 16315 4365 4365

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