hibernate restrictions.in with和,如何使用?

时间:2010-04-27 08:11:08

标签: java sql hibernate

我有如下表格

id, employee_no, survey_no, name
1    test          1         test_name
2    test2         1         test_name2
3    test3         1         test_name3
4    test4         2         test_name4

如何通过将下面的AND组合成一个IN语句来使用Restriction.in进行查询?

 IN[   (if(survey_no==1)  && employee_no== 'test')  ,  
       (if(survey_no==1)  && employee_no== 'test2') ,
        ...
   ]

2 个答案:

答案 0 :(得分:7)

我认为这是你想要使用的标准组合(顺便说一句。它更容易帮助Hibernate实体bean定义而不是表结构):

String[] employeeNames = { "test", "test2" };
List<Survey> surveys = getSession().createCriteria(Survey.class).add(
        Restrictions.and
        (
            Restrictions.eq("surveyNumber", 1),
            Restrictions.in("employeeName", employeeNames)
        )
    ).list();

答案 1 :(得分:0)

List<EmployeeSurvey> employeeSurvey = getSession().createCriteria
(EmployeeSurvey.class).add(
    Restrictions.and
    (
        Restrictions.eq("survey_no", 1), 
        Restrictions.in("employee_name", new String[] {"test", "test1"})
    )).list();