0 rows where subcategory = "SupLat"

View and edit SQL

0 records

CREATE TABLE "reflective_subcategories" (
	"subcategory"	TEXT NOT NULL,
	"supercategory"	TEXT NOT NULL, "reflector_hr" text, "reflection_hr" text,
	FOREIGN KEY("subcategory") REFERENCES "categories"("name") on update cascade on delete restrict,
	FOREIGN KEY("supercategory") REFERENCES "categories"("name") on update cascade on delete restrict,
	PRIMARY KEY("subcategory","supercategory")
);