[译]对于SQL中的varchar字段按照int进行排序
原文链接: https://stackoverflow.com/questions/11808573/sql-order-string-as-number
对某列数据进行排序的时候, 我希望他按照以下顺序进行排序
1 2 3 4 5 6 7 8 9 10...
不过现在的顺序如下:
1 10 2 3 4 5 6 7 8 9
解决方案:
将特定列名显式转换成int类型
select col from yourtable
order by cast(col as unsigned)