码迷,mamicode.com
首页 > 其他好文 > 详细

round(x,y)和format(x,y)

时间:2018-07-04 16:10:43      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:weight   一个   form   字符串   整数   mat   数值   部分   span   

select round(123456.1456,2);
+----------------------+
| round(123456.1456,2) |
+----------------------+
|            123456.15 |
+----------------------+

select format(123456.1456,2);
+-----------------------+
| format(123456.1456,2) |
+-----------------------+
| 123,456.15            |
+-----------------------+

round()和format()都会对数值进行四舍五入,但是format()返回的是字符串,整数部分,每3位添加一个逗号。round()返回的仍然是数值

round(x,y)和format(x,y)

标签:weight   一个   form   字符串   整数   mat   数值   部分   span   

原文地址:https://www.cnblogs.com/bibiafa/p/9263483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!