mysql|base func
Posted 可乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql|base func相关的知识,希望对你有一定的参考价值。
2020-04-28
mysql常用函数
round(num, d) 取整
- num 需要取整的数字
- d 表示四舍五入后保留的小数点后的位数;可取负数,针对左侧位置的数值进行保存
- 案例
- 两个方法相等: select round(156.123, 0) || seelct round(156.123) ==》 156
- d 取负数: select round(156.123,-1) ==》 160
floor(num) 向下取整,只返回整数部分,小数部分直接舍弃;不需要判断是否四舍五入
- select round(156.1) ==》 156
- select round(156.6) ==》 156
ceiling() 向上取整,只要存在小数部分,则返回num的整数部分 +1;
- select round(156.1) ==》 157
- select round(156.6) ==》 157
以上是关于mysql|base func的主要内容,如果未能解决你的问题,请参考以下文章