1 row where category = "Inj"

View and edit SQL

category ▼ arrows
Inj Mono

Advanced export

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

CSV options:

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