例如,我有此查询

 select cat from Cat cat where cat.id in :ids


我想将ID设置为列表(1,2,3,4,5,6,17,19)。

该代码不起作用

session.createQuery("select cat from Cat cat where cat.id in :ids")
       .setParameter("ids", new Long[]{1,2,3,4,5})


结果,我想使用id in (1,2,3,4)这样的SQL查询

最佳答案

使用setParameterList()。您还必须在列表参数周围加上括号。

session.createQuery("select cat from Cat cat where cat.id in (:ids)").setParameterList("ids", new Long[]{1,2,3,4,5})

关于sql - 如何将值列表设置为 hibernate 查询的参数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6584898/

10-17 01:24