天花板返回等于或高于值
的整数
SELECT ceiling(879999.51357924604783137)
round(X,N)舍入为N位数:
N> 0:舍入到小数点右边的N位数。
N = 0:舍入到最接近的整数。
N< 0 :舍入到小数点左侧的N位数。
然后
select cast(round(879999.51357924604783137,-1) as decimal(18,0))
select cast(round( 880000.5,-1) as decimal(18,0))