由于mysql的一些写法在hql里不支持,所以查询各种资料后得出
如果排序要求为,假如说A字段排序(A字段存入的都是数字的字符串),当A字段为空时排在最后,并且为空的用修改时间modify_date来排序,可以这样写
order by case when ifnull(A,‘‘)=‘‘ then 0 else 1 end desc, A+0 asc,modify_date asc
A+0时防止出现排序出现1,11,123,11234,2,3,4.。。。的情况
原文地址:https://www.cnblogs.com/wysz1012/p/9476282.html
时间: 2024-11-02 18:20:59