Covid-19 Case In Malaysia
Dataset retrieved from Malaysia's Ministry of Health
@kaggle.viviansam_covid_19_case_in_malaysia
Dataset retrieved from Malaysia's Ministry of Health
@kaggle.viviansam_covid_19_case_in_malaysia
CREATE TABLE cases_state (
"date" TIMESTAMP,
"state" VARCHAR,
"cases_new" BIGINT,
"cases_import" BIGINT,
"cases_recovered" BIGINT,
"cases_active" BIGINT,
"cases_cluster" BIGINT,
"cases_unvax" BIGINT,
"cases_pvax" BIGINT,
"cases_fvax" BIGINT,
"cases_boost" BIGINT,
"cases_child" BIGINT,
"cases_adolescent" BIGINT,
"cases_adult" BIGINT,
"cases_elderly" BIGINT,
"cases_0_4" BIGINT,
"cases_5_11" BIGINT,
"cases_12_17" BIGINT,
"cases_18_29" BIGINT,
"cases_30_39" BIGINT,
"cases_40_49" BIGINT,
"cases_50_59" BIGINT,
"cases_60_69" BIGINT,
"cases_70_79" BIGINT,
"cases_80" BIGINT
);
CREATE TABLE deaths_state (
"date" TIMESTAMP,
"state" VARCHAR,
"deaths_new" BIGINT,
"deaths_bid" BIGINT,
"deaths_new_dod" BIGINT,
"deaths_bid_dod" BIGINT,
"deaths_unvax" BIGINT,
"deaths_pvax" BIGINT,
"deaths_fvax" BIGINT,
"deaths_boost" BIGINT,
"deaths_tat" BIGINT
);
CREATE TABLE hospital (
"date" TIMESTAMP,
"state" VARCHAR,
"beds" BIGINT,
"beds_covid" BIGINT,
"beds_noncrit" BIGINT,
"admitted_pui" BIGINT,
"admitted_covid" BIGINT,
"admitted_total" BIGINT,
"discharged_pui" BIGINT,
"discharged_covid" BIGINT,
"discharged_total" BIGINT,
"hosp_covid" BIGINT,
"hosp_pui" BIGINT,
"hosp_noncovid" BIGINT
);
CREATE TABLE icu (
"date" TIMESTAMP,
"state" VARCHAR,
"beds_icu" BIGINT,
"beds_icu_rep" BIGINT,
"beds_icu_total" BIGINT,
"beds_icu_covid" BIGINT,
"vent" BIGINT,
"vent_port" BIGINT,
"icu_covid" BIGINT,
"icu_pui" BIGINT,
"icu_noncovid" BIGINT,
"vent_covid" BIGINT,
"vent_pui" BIGINT,
"vent_noncovid" BIGINT,
"vent_used" BIGINT,
"vent_port_used" BIGINT
);
CREATE TABLE population (
"state" VARCHAR,
"idxs" BIGINT,
"pop" BIGINT,
"pop_18" BIGINT,
"pop_60" BIGINT,
"pop_12" BIGINT,
"pop_5" BIGINT
);
CREATE TABLE vax_malaysia (
"date" TIMESTAMP,
"daily_partial" BIGINT,
"daily_full" BIGINT,
"daily_booster" BIGINT,
"daily_booster2" BIGINT,
"daily" BIGINT,
"daily_partial_adol" BIGINT,
"daily_full_adol" BIGINT,
"daily_booster_adol" BIGINT,
"daily_booster2_adol" BIGINT,
"daily_partial_child" BIGINT,
"daily_full_child" BIGINT,
"daily_booster_child" BIGINT,
"daily_booster2_child" BIGINT,
"cumul_partial" BIGINT,
"cumul_full" BIGINT,
"cumul_booster" BIGINT,
"cumul_booster2" BIGINT,
"cumul" BIGINT,
"cumul_partial_adol" BIGINT,
"cumul_full_adol" BIGINT,
"cumul_booster_adol" BIGINT,
"cumul_booster2_adol" BIGINT,
"cumul_partial_child" BIGINT,
"cumul_full_child" BIGINT,
"cumul_booster_child" BIGINT,
"cumul_booster2_child" BIGINT,
"pfizer1" BIGINT,
"pfizer2" BIGINT,
"pfizer3" BIGINT,
"pfizer4" BIGINT,
"sinovac1" BIGINT,
"sinovac2" BIGINT,
"sinovac3" BIGINT,
"sinovac4" BIGINT,
"astra1" BIGINT,
"astra2" BIGINT,
"astra3" BIGINT,
"astra4" BIGINT,
"sinopharm1" BIGINT,
"sinopharm2" BIGINT,
"sinopharm3" BIGINT,
"sinopharm4" BIGINT,
"cansino" BIGINT,
"cansino3" BIGINT,
"cansino4" BIGINT,
"pending1" BIGINT,
"pending2" BIGINT,
"pending3" BIGINT,
"pending4" BIGINT
);
CREATE TABLE vax_state (
"date" TIMESTAMP,
"state" VARCHAR,
"daily_partial" BIGINT,
"daily_full" BIGINT,
"daily_booster" BIGINT,
"daily_booster2" BIGINT,
"daily" BIGINT,
"daily_partial_adol" BIGINT,
"daily_full_adol" BIGINT,
"daily_booster_adol" BIGINT,
"daily_booster2_adol" BIGINT,
"daily_partial_child" BIGINT,
"daily_full_child" BIGINT,
"daily_booster_child" BIGINT,
"daily_booster2_child" BIGINT,
"cumul_partial" BIGINT,
"cumul_full" BIGINT,
"cumul_booster" BIGINT,
"cumul_booster2" BIGINT,
"cumul" BIGINT,
"cumul_partial_adol" BIGINT,
"cumul_full_adol" BIGINT,
"cumul_booster_adol" BIGINT,
"cumul_booster2_adol" BIGINT,
"cumul_partial_child" BIGINT,
"cumul_full_child" BIGINT,
"cumul_booster_child" BIGINT,
"cumul_booster2_child" BIGINT,
"pfizer1" BIGINT,
"pfizer2" BIGINT,
"pfizer3" BIGINT,
"pfizer4" BIGINT,
"sinovac1" BIGINT,
"sinovac2" BIGINT,
"sinovac3" BIGINT,
"sinovac4" BIGINT,
"astra1" BIGINT,
"astra2" BIGINT,
"astra3" BIGINT,
"astra4" BIGINT,
"sinopharm1" BIGINT,
"sinopharm2" BIGINT,
"sinopharm3" BIGINT,
"sinopharm4" BIGINT,
"cansino" BIGINT,
"cansino3" BIGINT,
"cansino4" BIGINT,
"pending1" BIGINT,
"pending2" BIGINT,
"pending3" BIGINT,
"pending4" BIGINT
);
Anyone who has the link will be able to view this.