home / pf

albums_artists

5 rows where artist_id = 402

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
411 411 393 393 402 402
2045 2045 1922 1922 402 402
26993 26993 26845 26845 402 402
27248 27248 27085 27085 402 402
27386 27386 27213 27213 402 402

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