zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

php mysql decimal 多余的0 解决方案详解数据库

mysqlPHP数据库解决方案 详解 多余 Decimal
2023-06-13 09:20:09 时间
select id,(0+cast(price as decimal(10,2))) as price,title from goods where id=1 

以上mysql的方法 但是PHP读取出来有时候还是带0

所以最靠谱的方法 数据库读取出来 用PHP处理下

echo floatval(0.200); 

exit();

读取出来的就是0.2

4023.html

mysql