categories_of_monoids
1 row where parent = "Ab"
This data as json, CSV (advanced)
| Link | internal_monoids | parent |
|---|---|---|
| Ab,Ring | Ring | Ab |
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
);