大家好,又见面了,我是你们的朋友全栈君。
针对字符串类型的字符排序 需要先转换成数字再进行排序
1.直接用加法
字符串+0
select * from orders order by (mark+0) desc
2.使用函数
CAST(value as type); CONVERT(value, type);
注: 这里的type可以为: 浮点数 : DECIMAL 整数 : SIGNED 无符号整数 : UNSIGNED
select * from orders order by CONVERT(mark,SIGNED) desc
select * from orders order by CAST(mark as SIGNED) desc
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/141712.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...