COVID-19 India
Latest statewise data of COVID-19 in India
@kaggle.swaptr_covid19_state_data
Latest statewise data of COVID-19 in India
@kaggle.swaptr_covid19_state_data
CREATE TABLE covid (
"state" VARCHAR,
"confirmed" BIGINT,
"active" BIGINT,
"passive" BIGINT,
"deaths" BIGINT,
"dose1" BIGINT,
"dose2" BIGINT,
"dose3" BIGINT,
"precaution_dose" BIGINT,
"total_doses" BIGINT,
"population" BIGINT
);
CREATE TABLE covid_data (
"unnamed_0" BIGINT,
"date" TIMESTAMP,
"region" VARCHAR,
"confirmed" BIGINT,
"active" DOUBLE,
"cured" DOUBLE,
"deaths" DOUBLE
);
CREATE TABLE weekly_data (
"startdate" TIMESTAMP,
"enddate" TIMESTAMP,
"total" BIGINT,
"dose_one" BIGINT,
"dose_two" BIGINT,
"dose_precaution" BIGINT,
"children" BIGINT,
"teens" BIGINT,
"adults" BIGINT,
"middle_aged" BIGINT,
"senior" BIGINT
);
CREATE TABLE weekly_registrations (
"startdate" TIMESTAMP,
"enddate" TIMESTAMP,
"total" BIGINT,
"children" BIGINT,
"teens" BIGINT,
"adults" BIGINT,
"middle_aged" BIGINT,
"seniors" BIGINT,
"male" BIGINT,
"female" BIGINT,
"others" BIGINT
);
Anyone who has the link will be able to view this.