PHP / SQLFinding Duplicates with SQL December 7, 2017 Chandan SharmaComment on Finding Duplicates with SQLFinding Duplicates with SQL:: SELECT `email`, COUNT(`email`) AS NumOccurrences FROM `user` GROUP BY `email` HAVING ( COUNT(`email`) > 1 )Share this:FacebookX