Is it possible to have a like in a where clause in a named query? I am trying to do the following but am getting exceptions
@NamedQuery(name = \"Place.getPla
If you are using positional parameters, you can use this way
@Query("select p from ABC p where p.name like CONCAT('%',?1,'%') ")