(1) 不严谨的,最简单的
select MAX(字段名 + 0) from 表名;
(2) 使用函数实现
select MAX(cast(字段名 as SIGNED INTEGER)) from 表名;
或者
select MAX(cast(字段名 as UNSIGNED INTEGER)) from 表名;