今天写一个sql语句 最后 order by fld_sort;

出来的顺序竟然是 1,11,2

看下原来fld_sort的字段竟然是 varchar类型

最后写成 order by fld_sort+0; 可以解决

不过感觉如果单独对列表进行排序,排序的字段最好是 写成 int 类型