hey everyone i have this data in my database

and where i try to execute this SQL commande
SELECT * FROM `adherent` WHERE nom="arfaoui"
can anyone helps me !!!!
Try this query:
SELECT nom, LENGTH(nom)
FROM `adherent`
WHERE nom LIKE "%arfaoui%"
It will return that row along with number of characters. That should help finding out whether it contains whitespace or any other characters.
try this :
SELECT * FROM adherent WHERE nom=" arfaoui"
SELECT * FROM adherentTRIM(). SELECT * FROMadherentWHERE TRIM(nom)="arfaoui"