How can I write hql query like same sql query like this "select * from Users u where u.id in (1, 3, 4)"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Maybe this will help you: Proper way of writing a HQL in ( ... ) query Another example using JPA: IN-clause in HQL or Java Persistence Query Language I've never used hql, but it always help to google a bit :) |
||||
|
I suggest you use native query to utilize your SQL query, so that you don't have to convert to HQL. |
|||
|
|
|
The simplest way to do this with play is
|
|||
|
|