3

我正在尝试在 Play 框架中构建查询,我有

select * from Candidate c where (:schools member of c.schools) 

在我将 :school 与 List 与一个元素绑定后,它会返回结果,但如果我将 List 与多个元素绑定,则不会发生任何事情。

Caused by: org.hibernate.hql.ast.QuerySyntaxException: unexpected AST node: {vector} [select c from models.Candidate c where (:schools0_, :schools1_ member of c.schools)  group by c.id order by RAND()]

其实我需要类似的东西

select * from candidate where schools in (x,x,x,x,x);

候选人和学校之间的关系在链接表中。

有没有办法绑定多个值?

4

2 回答 2

4

实际上我发现问题出在哪里 -成员只能用于单个值并且它工作正常。当我们需要使用多个值时,最好使用标准 sql in

 select c from Candidate c inner join c.schools as school where school.id in (25980,25981)"

需要加入链接表 - 我们不能使用 c.schools.id,因此我们需要使用别名内部加入 c.schools 以指定列。

我认为所有初学者都应该检查http://www.javatx.cn/hibernate/reference/en/html/queryhql.html

于 2010-09-28T15:33:29.653 回答
1

使用 Hibernate,您还可以直接使用列表本身。

select c from Candidate c join c.schools as school where school.id in (:schools)

:schools 参数的类型是根据您的 id 键入的,例如List<Int>List<Long>

于 2010-11-19T06:22:38.680 回答