Vaccination Against Covid-19
COVID-19 data updates weekly, allowing retrospective corrections.
@kaggle.olaflundstrom_vaccination_against_covid_19
COVID-19 data updates weekly, allowing retrospective corrections.
@kaggle.olaflundstrom_vaccination_against_covid_19
CREATE TABLE opendata_covid19_vaccination_agegroup (
"statisticsdate" TIMESTAMP,
"targetdiseasecode" BIGINT,
"targetdisease" VARCHAR,
"agegroup" VARCHAR,
"vaccinationseries" BIGINT,
"measurementtype" VARCHAR,
"locationpopulation" DOUBLE,
"dailycount" BIGINT,
"totalcount" BIGINT,
"populationcoverage" DOUBLE
);
CREATE TABLE opendata_covid19_vaccination_location_county (
"statisticsdate" TIMESTAMP,
"targetdiseasecode" BIGINT,
"targetdisease" VARCHAR,
"locationcountry" VARCHAR,
"locationcountryehak" BIGINT,
"locationcounty" VARCHAR,
"locationcountyehak" DOUBLE,
"locationlevel" VARCHAR,
"vaccinationseries" BIGINT,
"measurementtype" VARCHAR,
"locationpopulation" DOUBLE,
"dailycount" BIGINT,
"totalcount" BIGINT,
"populationcoverage" DOUBLE
);
CREATE TABLE opendata_covid19_vaccination_location_village_agegroup_gender (
"statisticsdate" TIMESTAMP,
"targetdiseasecode" BIGINT,
"targetdisease" VARCHAR,
"locationcountry" VARCHAR,
"locationcountryehak" BIGINT,
"locationcounty" VARCHAR,
"locationcountyehak" BIGINT,
"locationcommune" VARCHAR,
"locationcommuneehak" BIGINT,
"locationvillage" VARCHAR,
"locationvillageehak" DOUBLE,
"locationlevel" VARCHAR,
"agegroup" VARCHAR,
"gender" VARCHAR,
"vaccinationseries" BIGINT,
"measurementtype" VARCHAR,
"locationpopulation" DOUBLE,
"dailycount" BIGINT,
"totalcount" BIGINT,
"populationcoverage" DOUBLE
);
CREATE TABLE opendata_covid19_vaccination_providertype_doses (
"statisticsdate" TIMESTAMP,
"targetdiseasecode" BIGINT,
"targetdisease" VARCHAR,
"providerservicetypecode" DOUBLE,
"providerservicetype" VARCHAR,
"dailycount" BIGINT,
"totalcount" BIGINT
);
CREATE TABLE opendata_covid19_vaccination_total (
"statisticsdate" TIMESTAMP,
"targetdiseasecode" BIGINT,
"targetdisease" VARCHAR,
"vaccinationseries" BIGINT,
"measurementtype" VARCHAR,
"locationpopulation" BIGINT,
"dailycount" BIGINT,
"totalcount" BIGINT,
"populationcoverage" DOUBLE
);
Anyone who has the link will be able to view this.