with b as (SELECT count(*) , VOTER FROM ethereum.maker.ez_governance_votes group by 2 order by 1 DESC limit 5) select count(*) , VOTER , block_timestamp::date from ethereum.maker.ez_governance_votes where VOTER in (select VOTER from b) group by 2,3
--Daily votes of voters and their number of votes