I have a lot of sql query command that use "WHERE" clause, I have just wondered that my postgresql searching was case sensitive.
for example:
Select * From myarea Where area_name = 'Jawa Barat1' --> not found
Select * from myarea Where area_name = 'jawa barat1' --> found
How to turn off the case sensitive searching in postgresql?
Please don't suggest me to change the sql command to set to lowercase at both side.
expect postgresql to in-case-sensitive searching (Mother = mother)