Du kan GROUP BY email
med HAVING COUNT(*) > 1
för att hitta alla dubbletter av e-postadresser, anslut sedan de resulterande dubblettmeddelandena med din tabell för att hämta ID:n:
SELECT id FROM my_table NATURAL JOIN (
SELECT email FROM my_table GROUP BY email HAVING COUNT(*) > 1
) t