First, you need to use HAVING, not WHERE, to get the result of GROUPed BY:
SELECT myField FROM myTable GROUP BY myField HAVING COUNT(myField) > 1
Secondly, you can expand it to several columns, for example:
SELECT MyCol1, MyCol2 FROM MyTable GROUP BY MyCol1, MyCol2 HAVING COUNT(*) > 1
source share