COVID-19, UK Data
@owid.uk_covid
@owid.uk_covid
CREATE TABLE owid_uk_covid (
"country" VARCHAR,
"date" TIMESTAMP,
"weekly_cases_rolling" UINTEGER,
"cumulative_cases" UINTEGER,
"weekly_deaths_rolling" INTEGER,
"cumulative_deaths" UINTEGER,
"daily_deaths" INTEGER,
"daily_cases" UINTEGER,
"test_positivity_rate" FLOAT,
"weekly_hospital_admissions" INTEGER,
"people_in_hospital" INTEGER,
"people_ventilated" INTEGER,
"cumulative_cases_rate" FLOAT,
"cumulative_deaths_rate" FLOAT,
"weekly_cases_rate" FLOAT,
"weekly_deaths_rate" FLOAT,
"weekly_cases_rolling_normalized" FLOAT,
"people_in_hospital_normalized" FLOAT,
"people_ventilated_normalized" FLOAT,
"weekly_deaths_rolling_normalized" FLOAT,
"daily_cases_rolling_average" FLOAT,
"daily_deaths_rolling_average" FLOAT,
"daily_cases_rate_rolling_average" FLOAT,
"daily_deaths_rate_rolling_average" FLOAT,
"new_hospital_admissions" FLOAT
);
Anyone who has the link will be able to view this.