Covid-19 Cases & Deaths
Covid-19 total cases, deaths data by Country
@kaggle.totoro29_covid19_cases_deaths
Covid-19 total cases, deaths data by Country
@kaggle.totoro29_covid19_cases_deaths
CREATE TABLE covid_19_countrywise (
"country" VARCHAR,
"region" VARCHAR,
"total_cases" BIGINT,
"total_cases_per_100k_pop" DOUBLE,
"new_cases_7_days" BIGINT,
"new_cases_per_100k_pop_7_days" DOUBLE,
"new_cases_24_hours" BIGINT,
"total_deaths" BIGINT,
"total_deaths_per_100k_pop" DOUBLE,
"new_deaths_7_days" BIGINT,
"new_deaths_per_100k_pop_7_days" DOUBLE,
"new_deaths_24_hours" BIGINT
);
Anyone who has the link will be able to view this.