This field name is Brand, Defined as UTF8 Characterset
Value is:
- C†Cell Premium Battery
See there is a character â€, I tried to replace that value of †with Spaces, but its not happening.
I tried REPLACE(Brand,'â€',''), But i am getting the same string.
Any suggestion on how to remove that.
I am not trying to change the table. The value in the table its present like that SELECT Brand, REPLACE( Brand, 'â€', '' ) FROM INFO WHERE ASIN = 'B001RQD01W' I got the result like below, I.e that character not removed "
- C†Cell Premium Battery
- C†Cell Premium Battery
Even though it displayed as Câ€, But in column value of the table it stored as C”. Hence the below step worked. REPLACE( Brand, 'C”', '' )
Regards Vikram
- C†Cell Premium Battery
" "- C†Cell Premium Battery
" For both same result. – user3080572 Dec 16 '13 at 17:49