Hi,
I need to strip some chars or strings from a varchar field in a table. Is this SQL syntax the best way to do that ?
SELECT filed
FROM table
WHERE REPLACE(REPLACE(REPLACE(REPLACE(filed, ' ', ''), '.', ''), '\'', ''), '(the)', '') LIKE 'cleanmatchword'
As you can see I want to remove spaces, dots, ' and the string (the) ...
Thank you for any help about !
Fabi