2012-04-10 16 views

Antwort

0

Versuchen Sie Folgendes:

SELECT 
    phone, 
    COUNT(phone) AS NumOccurrences 
FROM 
    *MyTable* 
GROUP BY 
    phone 
HAVING ( 
    COUNT(phone) > 1 
)