hibernate HQL查询是否支持使用select min,max,count和其他sql函数?
像:
select min(p.age) from person p
由于
答案 0 :(得分:12)
是的,HQL支持min()
,max()
和count()
。
请参阅Hibernate Doc。中的aggregate functions。
答案 1 :(得分:5)
这就是我在Hibernate中使用max的方式:
public long getNextId(){
long appId;
try{
Session session = HibernateUtil.getAdmSessionFactory().getCurrentSession();
Transaction t = session.beginTransaction();
String sequel = "Select max(JAdmAppExemptionId) from JAdmAppExemption";
Query q = session.createQuery(sequel);
List currentSeq = q.list();
if(currentSeq == null){
return appId;
}else{
appId = (Long)currentSeq.get(0);
return appId+1;
}
}catch(Exception exc){
System.out.print("Unable to get latestID");
exc.printStackTrace();
}
return 0;
}
答案 2 :(得分:2)
支持某些聚合函数:查看manual