转化为整型:
select * from userinfos where appinfoid=".$appinfoid." and Ext1='".$res['Ext1']."' order by CONVERT(Ext2, SIGNED) desc
转化为浮点型:
select * from userinfos where appinfoid=".$appinfoid." and Ext1='".$res['Ext1']."' order by CONVERT(Ext2, DECIMAL(4,2)) desc
注释:DECIMAL(P,D)
P是表示有效数字数的精度。 P范围为1〜65。
D是表示小数点后的位数。 D的范围是0~30。MySQL要求D小于或等于(<=)P。