8 rows where category = "Grp" sorted by construction

View and edit SQL

Link category construction ▼
Grp binary product
Grp binary sum
Grp coequalizer
Grp equalizer
Grp initial object
Grp pullback
Grp pushout
Grp terminal object

Advanced export

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

CSV options:

CREATE TABLE "categorical_structure" (
	"category"	TEXT NOT NULL,
	"construction"	TEXT NOT NULL,
	FOREIGN KEY("construction") REFERENCES "universal_objects"("construction") on update cascade on delete restrict,
	FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
	PRIMARY KEY("category","construction")
);