I am trying to group by two values because I want to remove duplicates from my database but somehow my group by
clause doesn't want to work (the fields are in varchar). I also checked if there is a space or something more but there is none.
The server is a mariadb server, and I use a simple HeidiSQL Client
SELECT Player, COUNT(Player)
FROM Players
GROUP BY Player
I want it to simply group by so that I can remove duplicate values.
Here is the result I currently get :
It's also the same with a SELECT CONCAT :