Smart Quotes and ascii characters

Go4Expert Member
12Aug2006,19:57   #1
daiondoroga's Avatar
Hi!
I need to update a VARCHAR2 column in a database and replace all occurances of a particular ascii character with another ascii character. These are not visible in the text as it's stored in the column. What functions can I use to do this type of replacement?
Go4Expert Founder
13Aug2006,08:30   #2
shabbir's Avatar
Use the ASCII function. something like
Code: SQL
UPDATE table-name SET column-name = ASCII('A') WHERE column-name = ASCII('B')