i should have been more careful in answering
it's not a "command", it's an expression
you can use the expression in a SELECT like this --
Code:
select description
, replace(description,'''','x')
from cncat_main
you can, if you wish, use it in an UPDATE like this --
Code:
update cncat_main
set description
= replace(description,'''','x')
where description like '%''%'