I am trying following query in SQL Server 2008 R2. While working with accent sensitivity I found this:
select case when 'Наина' = '毛泽东先生' then 'Match' else 'No Match' end col
I see result is:
'Match'
What could be possibly be the reason for this behavior? I have also tried using COLLATE
with different accents but it didn't work.