码迷,mamicode.com
首页 > 数据库 > 详细

mysql-向上,向下,四舍五入-取整函数

时间:2014-09-10 02:49:31      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:mysql函数

mysql> select ceil(2.44),round(2.44),floor(2.44);
+------------+-------------+-------------+
| ceil(2.44) | round(2.44) | floor(2.44) |
+------------+-------------+-------------+
|          3 |           2 |           2 |
+------------+-------------+-------------+
1 row in set (0.00 sec)

mysql> select ceil(2.55),round(2.55),floor(2.55);     
+------------+-------------+-------------+
| ceil(2.55) | round(2.55) | floor(2.55) |
+------------+-------------+-------------+
|          3 |           3 |           2 |
+------------+-------------+-------------+
1 row in set (0.00 sec)

 

其中ceil为向上取整,round为四舍五入取整,floor为向下取整。

本文出自 “Chocolee” 博客,请务必保留此出处http://chocolee.blog.51cto.com/8158455/1550344

mysql-向上,向下,四舍五入-取整函数

标签:mysql函数

原文地址:http://chocolee.blog.51cto.com/8158455/1550344

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