0

我想获得相同的总行数

select count( ) from (select count( ) from tableA group by column1)

我在网上搜索我的问题,但没有找到解决方案

4

1 回答 1

1

使用投影:

criteria.setProjection(Projections.rowCount()).uniqueResult();
于 2012-04-05T17:09:15.657 回答