1 row where parent = "Top"

View and edit SQL

Link internal_monoids parent
TopMon Top

Advanced export

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

CSV options:

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