mysql字符串转int类型

使用cast函数

使用实例:

select cast('6.99' as signed);    //6
select cast('hello' as signed);   //0

你可能感兴趣的:(mysql字符串转int类型)