COVID-19 Coronavirus Pandemic
Dataset describing total cases of COVID 19 around the world
@kaggle.rinichristy_covid19_coronavirus_pandemic
Dataset describing total cases of COVID 19 around the world
@kaggle.rinichristy_covid19_coronavirus_pandemic
Dataset contains, Total cases, Total Deaths, Total Cases//1M pop, Total Deaths/1M pop, Death percentage related to COVID 19 Coronovirus pandemic.
Dataset obtained from Worldometer website. It is updated daily on their website.
CREATE TABLE covid_19_coronavirus (
"country" VARCHAR,
"other_names" VARCHAR,
"iso_3166_1_alpha_3_code" VARCHAR,
"population" BIGINT,
"continent" VARCHAR,
"total_cases" BIGINT,
"total_deaths" BIGINT,
"tot_cases_1m_pop" BIGINT -- Tot Cases//1M Pop,
"tot_deaths_1m_pop" BIGINT,
"death_percentage" DOUBLE
);Anyone who has the link will be able to view this.