Hi,
I’ve noticed that requests to database (like WHERE name = ‘Account’) is not case sensitive and not sensitive to umlauts, for ex:
when I do request with “WHERE name = ‘Account’” I will get in results
not only:
- Account
but also:
2) Accoünt
3) account
4) äccount
5) Accoúnt
Is there any way to disable such functionality to have next:
when I search for: ‘Account’ -> i’m getting only ‘Account’
when I search for: Accoünt -> i’m getting only ‘Accoünt’ and so on…
Thanks.