3 rows where internal_groups = "Ab"

View and edit SQL

parent ▼ internal_groups
Ab Ab
Grp Ab
Mon Ab

Advanced export

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

CSV options:

CREATE TABLE "categories_of_groups" (
	"internal_groups"	TEXT NOT NULL,
	"parent"	TEXT NOT NULL UNIQUE,
	FOREIGN KEY("parent") REFERENCES "categories"("name"),
	FOREIGN KEY("internal_groups") REFERENCES "categories"("name"),
	PRIMARY KEY("parent")
);