subcategories
0 rows where subcategory = "RT(K₁)"
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")
);