I have data in Vietnamese with accents: Bảo Linh, Ngọc Mai
If I search with query:
select * from profile where fullname COLLATE Vietnamese_CI_AI like '%ao%'
It returns Bảo Linh
Problem is when I search with:
select * from profile where fullname COLLATE Vietnamese_CI_AI like '%goc%'
Its not returns Ngọc Mai (search with "ngoc" instead of "goc" still give me result Ngọc Mai)
I want to have result Ngọc Mai when I search "goc"
T try N before search value but not work Please help me. Thank you.