home / pf

albums_artists

5 rows where artist_id = 3892

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5731 5731 5467 5467 3892 3892
5732 5732 5468 5468 3892 3892
6541 6541 6252 6252 3892 3892
6542 6542 6253 6253 3892 3892
26353 26353 26247 26247 3892 3892

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