0 rows where internal_relations = "CommAlg(Ab)"

View and edit SQL

0 records

CREATE TABLE "bicategories_of_relations" (
	"internal_relations"	TEXT NOT NULL UNIQUE,
	"parent"	TEXT NOT NULL UNIQUE,
	PRIMARY KEY("internal_relations","parent"),
	FOREIGN KEY("parent") REFERENCES "categories"("name") on update cascade on delete restrict,
	FOREIGN KEY("internal_relations") REFERENCES "categories"("name") on update cascade on delete restrict
);