categories_of_groups
1 row where internal_groups = "SGrp"
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "categories_of_groups" (
"internal_groups" TEXT NOT NULL,
"parent" TEXT NOT NULL UNIQUE,
FOREIGN KEY("parent") REFERENCES "categories"("name"),
FOREIGN KEY("internal_groups") REFERENCES "categories"("name"),
PRIMARY KEY("parent")
);