subcategories
0 rows where subcategory = "TopGrp"
This data as json
0 records
CREATE TABLE "subcategories" ( "subcategory" TEXT NOT NULL, "parent" TEXT NOT NULL, FOREIGN KEY("parent") REFERENCES "categories"("name") on update cascade on delete restrict, FOREIGN KEY("subcategory") REFERENCES "categories"("name") on update cascade on delete restrict, PRIMARY KEY("subcategory","parent") );