Covid-19 Deaths And Vaccinations Dataset
Analyze the data to find patterns and trends in Covid-19 deaths and vaccination
@kaggle.tohidkhanbagani_covid_19_deaths_and_vaccinations_dataset
Analyze the data to find patterns and trends in Covid-19 deaths and vaccination
@kaggle.tohidkhanbagani_covid_19_deaths_and_vaccinations_dataset
CREATE TABLE covid_deaths (
"iso_code" VARCHAR,
"continent" VARCHAR,
"location" VARCHAR,
"date" TIMESTAMP,
"population" BIGINT,
"total_cases" DOUBLE,
"new_cases" DOUBLE,
"new_cases_smoothed" DOUBLE,
"total_deaths" DOUBLE,
"new_deaths" DOUBLE,
"new_deaths_smoothed" DOUBLE,
"total_cases_per_million" DOUBLE,
"new_cases_per_million" DOUBLE,
"new_cases_smoothed_per_million" DOUBLE,
"total_deaths_per_million" DOUBLE,
"new_deaths_per_million" DOUBLE,
"new_deaths_smoothed_per_million" DOUBLE,
"reproduction_rate" DOUBLE,
"icu_patients" DOUBLE,
"icu_patients_per_million" DOUBLE,
"hosp_patients" DOUBLE,
"hosp_patients_per_million" DOUBLE,
"weekly_icu_admissions" DOUBLE,
"weekly_icu_admissions_per_million" DOUBLE,
"weekly_hosp_admissions" DOUBLE,
"weekly_hosp_admissions_per_million" DOUBLE
);
Anyone who has the link will be able to view this.