1 row where internal_relations = "Rel"

View and edit SQL

Link internal_relations parent
Rel Set

Advanced export

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

CSV options:

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