HQL 使用两列中最大的列对记录进行排序
对于数据库中的每一行,我有 2 列,例如 id
和 A
。有时A
可以为null
。我想按 id
和 A
值中的最大值对所有记录进行排序,但如果 A
为 null
,则将被忽略,并且该列将按 id
排序。
我使用 Hibernate 和 MySQL 数据库。到目前为止,我的 HQL 工作
select i from Item as i order by GREATEST(id, a)
正常,除了带有 A=null
的记录。对于这些值,它们出现在返回结果的末尾(它们应该使用它们的 id
作为键进行排序)。
这样的HQL语句怎么写呢?
For each row in my database, I have 2 columns, say id
and A
. Sometimes A
can be null
. I want to sort all records by greatest of its id
and A
value, but if A
is null
, it will be ignored and the column will be sorted by id
instead.
I'm using Hibernate and database as MySQL. So far, my HQL is like
select i from Item as i order by GREATEST(id, a)
it is working fine except for the records with A=null
. For those values, they appear at the end of the returning results (they're supposed to be sorted using their id
as key).
How to write such an HQL statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有人用
Case..When..End
解决了这个问题,效果很好。Somebody solved it with
Case..When..End
, works perfectly.