Consulta 1: select distinct email from mybigtable where account_id=345 leva 0.1s Consulta 2: Select count(*) as total from mybigtable where account_id=123 and email IN (<include all from above result>) leva 0.2s Consulta 3: Select count(*) as total from mybigtable where...