Let's assume a simple schema consisting of two tables.
- STATISTICS for COVID-19 daily statistics like confirmed cases, deaths, etc.
- DEMOGRAPHICS with addition per-country data like population, area, population density and more
This table could have columns such as
- country_id: Identifies the country by ISO code
- dt: the date for the reported number
- confirmed_cases: number of confirmed cases
- deaths: number of confirmed deaths
- ...
Data could come from a source like https://www.ecdc.europa.eu/en/geographical-distribution-2019-ncov-cases or https://www.who.int/emergencies/diseases/novel-coronavirus-2019
This table could have columns such as
- country_id: identifies the country by ISO code
- country_name: the full country name
- population: total population
- area: total area
- density: population density
- ...
There could be many more columns. See https://unstats.un.org/unsd/demographic-social/index.cshtml for a possible data source.