sql取整函数

2018-06-13  本文已影响0人  飞翔的猪宝宝
  1. ceil (x) / ceiling(x)     向上取整
    ex: ceil(1.2) = 2
  1. floor (x)     向下取整
    ex: floor(1.2) = 1
  1. round(x) / round(x,n)     指定精度四舍五入
    ex:  round(1.5) = 2      round(1.5,3) = 1.500
  1. 指定精度进行数据截取
     ex: truncate(1.2,0) = 1      truncate(1.2,3) = 1.200
上一篇下一篇

猜你喜欢

热点阅读