select
VOTER ,
count(DISTINCT TX_ID) as num_vote ,
count(DISTINCT VOTE_OPTION ) as num_vote_kind
from osmosis.core.fact_governance_votes
where PROPOSAL_ID = 362
and TX_STATUS ='SUCCEEDED'
-- and VOTER = 'osmo16798cwveu2pch9js2ptfy4u6td9zme3mh95n86'
group by voter
HAVING num_vote_kind > 1
order by num_vote desc
limit 15