赞
踩
round(x,y)
round是四舍五入函数,无y值时默认保留整数,y值大于零时,意为小数点后保留位数,小于零时,是在整数的基础上四舍五入,比如round(129,-1),结果为130
floor(x)
向下取整
ceiling(x) 或 ceil(x)
向上取整
cast(x as y)
这个函数是个重点,它用来做类型装换,可以将x转换为y类型,如cast(123.4 as int),结果为123
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。