1 row where base = "Top"

View and edit SQL

Link base pointed
Top Top*

Advanced export

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

CSV options:

CREATE TABLE "maybe_monads" (
	"base"	TEXT NOT NULL UNIQUE,
	"pointed"	TEXT NOT NULL UNIQUE,
	FOREIGN KEY("base") REFERENCES "categories"("name") on delete restrict on update cascade,
	FOREIGN KEY("pointed") REFERENCES "categories"("name") on delete restrict on update cascade,
	PRIMARY KEY("base","pointed")
);