3 rows where category = "Vect_k"

View and edit SQL

Link category homs
Vect_k Ab
Vect_k Set*
Vect_k Vect_k

Advanced export

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

CSV options:

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