CREATE TABLE employee_compensation (
"organization_group_code" BIGINT,
"job_family_code" VARCHAR,
"job_code" VARCHAR,
"year_type" VARCHAR,
"year" BIGINT,
"organization_group" VARCHAR,
"department_code" VARCHAR,
"department" VARCHAR,
"union_code" DOUBLE,
"union" VARCHAR,
"job_family" VARCHAR,
"job" VARCHAR,
"employee_identifier" BIGINT,
"salaries" DOUBLE,
"overtime" DOUBLE,
"other_salaries" DOUBLE,
"total_salary" DOUBLE,
"retirement" DOUBLE,
"health_and_dental" DOUBLE,
"other_benefits" DOUBLE,
"total_benefits" DOUBLE,
"total_compensation" DOUBLE
);