Hi,
It seems to be simple, however, it stumbles me.
how to replace all the double quotes (") within the following
sentence (or a column) with single quotes ('),
colA = this is a freaking "silly" thing to do
into
colA this is a freaking 'silly' thing to do
Select Replace(colA,'" ',''')[color=blue]
>From tblXYZ[/color]
won't work,
Select Replace(colA,'" ',"'")[color=blue]
>From tblXYZ[/color]
won't work neither.
How come? Thanks.
It seems to be simple, however, it stumbles me.
how to replace all the double quotes (") within the following
sentence (or a column) with single quotes ('),
colA = this is a freaking "silly" thing to do
into
colA this is a freaking 'silly' thing to do
Select Replace(colA,'" ',''')[color=blue]
>From tblXYZ[/color]
won't work,
Select Replace(colA,'" ',"'")[color=blue]
>From tblXYZ[/color]
won't work neither.
How come? Thanks.
Comment