在 HQL 上使用 Min、Max 和 Count
hibernate HQL查询是否支持使用select min、max、count和其他sql函数?
例如:
从 person p 中选择 min(p.age)
谢谢
Does hibernate HQL queries support using select min, max, count and other sql functions?
like:
select min(p.age) from person p
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,HQL 支持
min()
、max()
和count()
。请参阅聚合函数休眠文档。
Yes,
min()
,max()
andcount()
are supported in HQL.see aggregate functions in the Hibernate Doc.
这就是我在 Hibernate 中使用 max 的方式:
thats how I am using max in Hibernate :
支持一些聚合函数:查看 手册
Some aggregate functions are supported: look in the manual