Hello
I'm struggling to work out how to remove all non-alphanumerical characters from a given field(s). I can do one at a time,
SELECT REPLACE(field, 'value to replace', 'what to replace with')
FROM tbl
But I need to do this for all non-alphanumerical characters, including spaces. Can anyone help?
I'm struggling to work out how to remove all non-alphanumerical characters from a given field(s). I can do one at a time,
SELECT REPLACE(field, 'value to replace', 'what to replace with')
FROM tbl
But I need to do this for all non-alphanumerical characters, including spaces. Can anyone help?