I want to replace all the special character with space ,I tried this below query its working partially ,
UPDATE
inventory_set_variations
SET
title =
REPLACE
(
REPLACE
(
REPLACE
(
REPLACE
(
REPLACE
(
REPLACE
(title,
'-',
''),
'+',
''
),
'.',
''
),
'(',
''
),
')',
''
),
' ',
''
)
WHERE
isvid = 1009638
here i want to replace all the special character with space and want to keep only alpha numeric character.
is there any suggestion ?