logical_completeness
0 rows where example_categeory = "Met"
This data as json
0 records
CREATE TABLE "logical_completeness" (
"example_categeory" TEXT NOT NULL,
"complete_2category" TEXT NOT NULL,
FOREIGN KEY("complete_2category") REFERENCES "categories"("name") on update cascade on delete restrict,
FOREIGN KEY("example_categeory") REFERENCES "categories"("name") on update cascade on delete restrict,
PRIMARY KEY("complete_2category")
);