0

我有一种情况,我需要在使用 Hibernate Criteria 时在 ON 子句中应用另一个 Condition。

我正在编写我的 MySQL,但我无法找到任何合理的方式在 Hibernate Criteria 中转换它。

SELECT s.StudentID AS StudentID, sc.CourseID AS CourseID
FROM Student s 
     LEFT JOIN StudentCourse sc ON 
          (sc.StudentID = s.StudentID AND sc.CourseID = 'XXX')

我在这个查询中做什么

我希望所有学生列表都注册或不注册指定课程。

如果我有四个学生并且只有一个学生参加了一门课程,那么结果应该是

StudentID, CourseID
1          NULL
2          XXX
3          NULL
4          NULL

到目前为止,我所做的是

Criteria cr = getSession().createCriteria(Student.class);
cr.createAlias("studentCourse", "sc", CriteriaSpecification.LEFT_JOIN)
    .add(Restrictions.eq("sc.CourseID", 'XXX'));

通过运行此语句,我得到与以下查询等效的查询

SELECT *
FROM Student s
     LEFT JOIN StudentCourse sc ON (sc.StudentID = s.StudentID)
WHERE sc.CourseID = 'XXX'

现在这个查询不符合查询的目的。它只返回 CourseID 不为空的一行。

编辑

休眠版本 3.4.0GA

4

1 回答 1

1

您可以将第二个标准移动到一般 WHERE 子句中,例如

WHERE (sc.CourseID = 'XXX' or sc.CourseID is null)
于 2012-09-24T07:54:49.680 回答