Statewide Hybrid Workforce
State of California
@usgov.ca_gov_statewide_hybrid_workforce
State of California
@usgov.ca_gov_statewide_hybrid_workforce
CREATE TABLE cbid_and_classification_list (
"reporting_year" BIGINT,
"reporting_month" BIGINT,
"org_code" VARCHAR,
"department_name" VARCHAR,
"class_code" BIGINT,
"class_title" VARCHAR,
"bargaining_unit" VARCHAR,
"employee_count" BIGINT,
"not_telework_eligible" BIGINT,
"remote_centered" BIGINT,
"office_centered" BIGINT,
"eligible_not_teleworking" BIGINT
);
CREATE TABLE data_submission_status (
"report_month" TIMESTAMP,
"department" VARCHAR,
"submission_status" VARCHAR
);
CREATE TABLE detail_by_agency_department (
"report_month" TIMESTAMP,
"org_code" VARCHAR,
"department" VARCHAR,
"all_reported_employees" DOUBLE,
"telework_eligible_employees" DOUBLE,
"telework_eligible_all_reported" VARCHAR,
"remote_centered_employees" DOUBLE,
"remote_centered_all_reported" VARCHAR,
"remote_centered_telework_eligible" VARCHAR,
"office_centered_employees" DOUBLE,
"office_centered_all_reported" VARCHAR,
"office_centered_telework_eligible" VARCHAR,
"teleworker_remote_office" DOUBLE,
"teleworker_all_reported" VARCHAR,
"teleworker_telework_eligible" VARCHAR,
"not_teleworking_employees_from_eligible" DOUBLE,
"not_teleworking_all_reported" VARCHAR,
"not_teleworking_telework_eligible" VARCHAR,
"not_teleworking_not_eligible" DOUBLE,
"not_teleworking_not_eligible_all_reported" VARCHAR,
"telework_days_from_eligible" VARCHAR
);
CREATE TABLE employee_by_classification (
"reporting_year" DOUBLE,
"reporting_month" DOUBLE,
"org_code" VARCHAR,
"department_name" VARCHAR,
"class_code" DOUBLE,
"class_title" VARCHAR,
"bargaining_unit" VARCHAR,
"employee_count" DOUBLE,
"not_telework_eligible" DOUBLE,
"remote_centered" DOUBLE,
"office_centered" DOUBLE,
"eligible_not_teleworking" DOUBLE
);
CREATE TABLE in_office_days_detail (
"report_month" TIMESTAMP,
"department" VARCHAR,
"n_0_days" BIGINT,
"n_1_day" BIGINT,
"n_2_days" BIGINT,
"n_3_days" BIGINT,
"n_4_days" BIGINT,
"n_5_days" BIGINT,
"total" BIGINT
);
CREATE TABLE in_office_days_trend (
"report_month" TIMESTAMP,
"department" VARCHAR,
"avg_office_days_week" DOUBLE
);
CREATE TABLE state_hybrid_workforce_trend (
"report_month" TIMESTAMP,
"all_staff" BIGINT,
"not_eligible_for_telework" BIGINT,
"telework_eligible" BIGINT,
"eligible_not_teleworking" BIGINT,
"office_centered" BIGINT,
"remote_centered" BIGINT
);
CREATE TABLE telework_days_detail (
"report_month" TIMESTAMP,
"department" VARCHAR,
"n_0_days" BIGINT,
"n_1_day" BIGINT,
"n_2_days" BIGINT,
"n_3_days" BIGINT,
"n_4_days" BIGINT,
"n_5_days" BIGINT,
"total" BIGINT
);
CREATE TABLE telework_days_trend (
"report_month" TIMESTAMP,
"department" VARCHAR,
"avg_telework_days_week" DOUBLE
);
Anyone who has the link will be able to view this.