I have a problem with a special character inserted in a SQL Server 2008 R2 table. The fact is that when I try to insert a row with the character ΒΊ (for example, 3 ELBOW 90ΒΊ LONG RADIUS) into the table, it looks like this: 3 ELBOW 90 LONG RADIUS, and when I try to select all the rows containing the character, the result is zero.
I tried to make a selection using ASCII by doing this: select * from itemcode, where the type description is '%' + char (63) + '%'
and make sure the ASCII of this character is 63:
select ASCII ('')
But that does not work. What should I do to select all rows that have this character, and what should I do to make this SQL recognize the character ΒΊ?
thanks
sql-server ascii
Misayel espinoza
source share