8 rows where homs = "Pos" sorted by category descending

View and edit SQL

homs

Link category ▲ homs
Rel Pos
Quant Pos
Pros Pos
Pos Pos
Loc Pos
Lat Pos
LMet Pos
Frm Pos

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")
);