SELECT LOWER(p."Name") FROM "User" p WHERE LOWER(p."Name") LIKE 'admin%';
In this query, I want to retrieve the data from "ADMIN" as "admin", but it comes as "admİn". There is an accent problem. How can I solve this globally in my database? Valid for all tables. I don't want to use the unaccent function because I'm using it via .Net.
I tried the Unaccent function, but I can't write this in every query.
Example
