I have a table as following
Create Table Test(Name NVARCHAR(100))
Insert Into Test(Name) values (N'ἀἁἃἄὠἀἁἃἄὠἀἁἃἄὠἀἁἃἄὠἀἁἃἄὠἀἁἃἄὠἀἁἃἄὠ1,')
Insert Into Test(Name) values (N'ἀἁἃἄὠἀἁἃἄ')
Insert Into Test(Name) values (N'Test')
Select * from ED.Test WHERE Name like N'ἀἁἃἄὠἀἁἃἄ'
This above Select query should return two results but now it is returning only one result.
This statement
Select * from ED.Test WHERE Name like '%ἀἁἃἄὠἀἁἃἄ%'
not returning any result.
Select * from ED.Test WHERE Name like N'%ἀἁἃἄὠἀἁἃἄ%'
returning all result.
What am I missing?