1 row where supercategory = "Mod(Ab)"

View and edit SQL

Link subcategory supercategory
Vect_k Mod(Ab)

Advanced export

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

CSV options:

CREATE TABLE "full_subcategories" (
	"subcategory"	TEXT NOT NULL,
	"supercategory"	TEXT NOT NULL,
	FOREIGN KEY("subcategory") REFERENCES "categories"("name") on update cascade on delete restrict,
	FOREIGN KEY("supercategory") REFERENCES "categories"("name") on update cascade on delete restrict,
	PRIMARY KEY("subcategory","supercategory")
);