categories_with_animal_names
0 rows where category = "LMet"
This data as json
0 records
CREATE TABLE "categories_with_animal_names" (
"category" TEXT NOT NULL UNIQUE,
"animal" TEXT NOT NULL,
FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
PRIMARY KEY("category")
);