Hi,
below query returns result in both the cases
Actual Data
ncharTitle
-----------
JȧSØÑ
when running query
select * from sampletable where ncharTitle like (N'%JȧSØÑ%')
select * from sampletable where ncharTitle like (N'%JSØÑ%')
returns same result ignoring 'ȧ' in 2nd query.
My collation is Latin1_General_CI_AI
Any help will be highly appreciated.