1 row where groupoid = "Hilb₀"

View and edit SQL

category ▼ groupoid
Hilb Hilb₀

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "cores" (
	"groupoid"	TEXT NOT NULL,
	"category"	TEXT NOT NULL UNIQUE,
	PRIMARY KEY("category"),
	FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
	FOREIGN KEY("groupoid") REFERENCES "categories"("name") on update cascade on delete restrict
);