categories_of_monoids
1 row where parent = "Cat"
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "categories_of_monoids" (
"internal_monoids" TEXT NOT NULL UNIQUE,
"parent" TEXT NOT NULL UNIQUE,
FOREIGN KEY("parent") REFERENCES "categories"("name") on update cascade on delete restrict,
PRIMARY KEY("parent","internal_monoids"),
FOREIGN KEY("internal_monoids") REFERENCES "categories"("name") on update cascade on delete restrict
);