1 row where category = "FinSet"

View and edit SQL

category ▼ skeleton
FinSet FinOrd

Advanced export

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

CSV options:

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