0 rows where internal_groups = "FinVect_k"

View and edit SQL

0 records

CREATE TABLE "categories_of_groups" (
	"internal_groups"	TEXT NOT NULL,
	"parent"	TEXT NOT NULL UNIQUE,
	FOREIGN KEY("parent") REFERENCES "categories"("name"),
	FOREIGN KEY("internal_groups") REFERENCES "categories"("name"),
	PRIMARY KEY("parent")
);