2

我需要用 Java + Hibernate 来做这个查询。

SELECT 
    table2.id,
    COUNT(table2.id) AS count
FROM
  table1 
    JOIN table2
       ON table1.fk_tb2 = table2.id  --many2one
GROUP BY
   table2.id

我会使用 DetachedCriteria 类.....我该怎么做?

4

2 回答 2

2

尝试使用这样的投影:

Criteria table1Crit = session.createCriteria("table1");
Criteria table2Crit = table1Crit.createCriteria("table2", Criteria.INNER_JOIN);
table2Crit.setProjection( Property.forName("id").count() );
于 2012-06-21T23:30:24.207 回答
-3

使用您的查询createNativeQuery方法

于 2012-06-21T20:37:12.103 回答