lintry

3/15日开始省有中国的合计,需要排除

......@@ -69,6 +69,7 @@ module.exports = function (dbo) {
select country_name, today, sum(confirmed_count) confirmed_sum, sum(increase) increase
from rpt
group by 1,2
where province != '中国'
order by country_name, confirmed_sum desc
)
select country_name, province, max(confirmed_count) max_count, jsonb_agg(today order by today) days, jsonb_agg(confirmed_count order by today) confirmed_counts,
......