home / pf

albums_artists

5 rows where artist_id = 382

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
390 390 371 371 382 382
4150 4150 3949 3949 382 382
13228 13228 12886 12886 382 382
16984 16984 16676 16676 382 382
20002 20002 19817 19817 382 382

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