I have requirement to write a spring boot JPQL query. I have a raw Postgres query. But I can't find the equivalent for \m for JPQL
The query is this:
select *
from my_table
where title ~* '(\mbag\M)| (\msamsung\M)';
I have requirement to write a spring boot JPQL query. I have a raw Postgres query. But I can't find the equivalent for \m for JPQL
The query is this:
select *
from my_table
where title ~* '(\mbag\M)| (\msamsung\M)';