Reputation: 59
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 !!!!
Upvotes: 0
Views: 67
Reputation: 30819
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.
Upvotes: 3