一尘不染

SQL订单字符串作为数字

mysql

我将数字保存VARCHAR到MySQL数据库。INT由于某些其他情况,我无法制作它们。

排序时将其作为字符而不是数字。

在数据库中我有

1 2 3 4 5 6 7 8 9 10...

在我的页面上,它显示如下排序列表:

1 10 2 3 4 5 6 7 8 9

如何使它按数字升序显示?


阅读 254

收藏
2020-05-17

共1个答案

一尘不染

如果可能,则无论如何仅存储数字,应将列的数据类型更改为数字。

如果您无法执行此操作,则将列值integer 强制转换

select col from yourtable
order by cast(col as unsigned)

隐式地 使用例如数学运算来强制转换为数字

select col from yourtable
order by col + 0

BTW MySQL将字符串从左到右转换。例子:

string value  |  integer value after conversion
--------------+--------------------------------
'1'           |  1
'ABC'         |  0   /* the string does not contain a number, so the result is 0 */
'123miles'    |  123 
'$123'        |  0   /* the left side of the string does not start with a number */
2020-05-17