1 row sorted by category descending

View and edit SQL

category ▲ completion
Op(FinCartSp) Man

Advanced export

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

CSV options:

CREATE TABLE "karoubi_envelopes" (
	"category"	TEXT NOT NULL UNIQUE,
	"completion"	TEXT NOT NULL,
	FOREIGN KEY("category") REFERENCES "categories"("name"),
	FOREIGN KEY("completion") REFERENCES "categories"("name"),
	PRIMARY KEY("category")
);