Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面是我的来自 mytable 的 cloumn,它是 VARCHAR。这些值来自气象站的 txt 文件。使用 PHP 将所有值导入 Mysql 数据库。我需要从 Outside 中选择最大值 (11,5) 。我该怎么做?
Outside ------- 9,5 9,9 10,3 10,2 11,5 11,3
我试过了
SELECT MAX( CONVERT( Outside, UNSIGNED ) )
这仅给出 11
与十进制数相乘时替换为,并.使用自动转换
,
.
SELECT max(replace(Outside, ',', '.') * 1.0)
SQLFiddle 演示