1 row where complete_2category = "CompCat"

View and edit SQL

complete_2category ▼ example_categeory
CompCat FinVect_k

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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")
);