0 rows where internal_simplicial_sets = "CompNormGrp"

View and edit SQL

0 records

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