the user saved on database ahmedhatem
SELECT personal_data.fname
FROM
personal_data
WHERE
( personal_data.fname LIKE '%ahmed hatem%' or
Replace(ahmed hatem , ' ', '')
LIKE '%ahmed hatem%'
when i use ahmedhatem
the result going well
but i need this sql to find the ahmedhatem
what can i do ?
i tried to use
personal_data.fname
LIKE '%ahmed hatem%'
but it doesn't work