Requête 1: select distinct email from mybigtable where account_id=345 prend 0,1 s Requête 2: Select count(*) as total from mybigtable where account_id=123 and email IN (<include all from above result>) prend 0,2 s Requête 3: Select count(*) as total from mybigtable where account_id=123 and...