1

这是 sql 的查询

SELECT type ,SUM(amount) FROM CustomerPayment GROUP BY type

我怎么能在hibernate中写这个?

4

1 回答 1

2

在 hql 中也是一样的:

select c.type, sum(c.amount) from CustomerPayment c group by c.type

于 2013-04-29T19:40:21.367 回答