我将数字保存VARCHAR到MySQL数据库。INT由于某些其他情况,我无法制作它们。
VARCHAR
INT
排序时将其作为字符而不是数字。
在数据库中我有
1 2 3 4 5 6 7 8 9 10...
在我的页面上,它显示如下排序列表:
1 10 2 3 4 5 6 7 8 9
如何使它按数字升序显示?
如果可能,则无论如何仅存储数字,应将列的数据类型更改为数字。
如果您无法执行此操作,则将列值integer 强制转换 为
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 */