it is possible to use LIKE in a list in a JPQL query (as in the IN key).
Something like: "Select a From Table a WHERE a.field LIKE IN :list"
So that I can set the parameters as follows: {"12%","13%","16%"} or do I need to dynamically convert many OR sentences cyclically?
thanks necros
source share