home / pf

albums_artists

5 rows where artist_id = 9329

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19517 19517 19304 19304 9329 9329
22075 22075 21979 21979 9329 9329
23245 23245 23142 23142 9329 9329
23397 23397 23294 23294 9329 9329
25282 25282 25179 25179 9329 9329

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