Pour obtenir tous les noms qui existent plus d'une fois, vous pouvez exécuter cette instruction :
SELECT Name FROM People GROUP BY Name HAVING COUNT(*)>1;
Pour obtenir tous les noms qui existent plus d'une fois, vous pouvez exécuter cette instruction :
SELECT Name FROM People GROUP BY Name HAVING COUNT(*)>1;