CREATE TABLE dog_breeds (
"name" VARCHAR,
"min_life_expectancy" BIGINT,
"max_life_expectancy" BIGINT,
"max_height_male" DOUBLE,
"max_height_female" DOUBLE,
"max_weight_male" DOUBLE,
"max_weight_female" DOUBLE,
"min_height_male" DOUBLE,
"min_height_female" DOUBLE,
"min_weight_male" DOUBLE,
"min_weight_female" DOUBLE,
"good_with_children" BIGINT,
"good_with_other_dogs" BIGINT,
"shedding" BIGINT,
"grooming" BIGINT,
"drooling" BIGINT,
"coat_length" BIGINT,
"good_with_strangers" BIGINT,
"playfulness" BIGINT,
"protectiveness" BIGINT,
"trainability" BIGINT,
"energy" BIGINT,
"barking" BIGINT
);