with check_countries as (SELECT count(distinct country_region)FROM `bigquery-public-data.covid19_jhu_csse.summary` LIMIT 1000),Hu_filter as (select 'HU' as country, * from `bigquery-public-data.covid19_jhu_csse.summary`where upper(country_region) = 'HUNGARY'),filtered as (select date, confirmed,…