I have following query for Czech language:
select Id,Name
from Account
where Name like '%Še%'
it will return me correct result. But if I change Š
to š
in my query:
select Id,Name
from Account
where Name like '%še%'
It returns nothing. Is this a sqlite bug?