I've been strugling today Because am trying to remove all the duplicates but it doesn't work
SELECT DISTINCT pays, nom, count(titre) FROM film JOIN personne ON film.idRealisateur = personne.id GROUP BY nom ORDER BY count(titre) DESC LIMIT 10
OUTPUT
Even When I used DISTINCT I got Duplicates in the column pays
