3 rows where parent = "Top"

View and edit SQL

Link subcategory parent
LMet Top
PDiff Top
TopVect Top

Advanced export

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

CSV options:

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