I have a join problem caused by special characters in a joining key. The key is nvarchar string. Both strings look confusingly the same.
(1) Łódzkie
(2) Łódzkie
The first is "normal". If I double click it the whole word is selected. If I double click the second word just the half of it is selected (Ł
or ódzkie
), depending which half is clicked.
I have tried to alter column type from nvarchar to varchar.
I think the problem is caused by the first letter. I tried the ascii of the first letter of two cases as select ASCII('Ł')
and in both cases I get the result 163.
No luck so far.