Hibernate max方法:计算某一列的最大值

max 方法用于计算某一列的最大值。

语法:

max(String propertyName)

参数说明:

  • propertyName:用于指定计算最大值的属性列的列名。

返回值:AggregateProjection 类的对象。AggregateProjection 类为 Projection 类的子类。

示例

获取成绩信息表中的最高成绩,关键代码如下:

Criteria criteria = session.createCriteria(ResultForm.class);  //获取Criteria对象
criteria.setProjection(Projections.max("achievement"));  //获取achievement列的最大值
double max = (Double)criteria.uniqueResult();  //获取查询结果
System.out.println("最高成绩:"+max);

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22882.html

(0)
上一篇 2021年7月20日
下一篇 2021年7月20日

相关推荐

发表回复

登录后才能评论