I am trying to write a JPQL query for searching data based on String. when i am trying to search data with 'C' it works fine, but its not working for 'c', below is the query. for example: below query is working for Cat, College, Collapse, but not working for cat, college, collapse. any help is appreciate.
@Query("select ca.company_01 from CompanyAddress_02 ca WHERE ca.statusActiveSwitch = 'Y' AND ca.country.region.regionCode = :regionCode")
Page<Company_01> findAllCompany_01Region(@Param("regionCode") String regionCode, Pageable pageRequest);