Countrywise COVID Cases
Country wise COVID patients total numbers
@kaggle.sunayanagawde_countrywise_covid_cases
Country wise COVID patients total numbers
@kaggle.sunayanagawde_countrywise_covid_cases
This dataset contains total number of COVID-19 cases till now in various countries. It includes total cases, total Deaths, total recoveries and death and recovery percentage
CREATE TABLE country_wise_covid_cases (
"country_name" VARCHAR,
"total_infected" BIGINT,
"total_deaths" BIGINT,
"total_recovered" DOUBLE,
"death" DOUBLE -- Death %,
"recovered" DOUBLE -- Recovered %
);Anyone who has the link will be able to view this.