Thread
:
Smart Quotes and ascii characters
View Single Post
shabbir
Go4Expert Founder
13Aug2006,08:30
Use the ASCII function. something like
Code: SQL
UPDATE
table-name
SET
column-name = ASCII
(
'A'
)
WHERE
column-name = ASCII
(
'B'
)