postgre函数008—常用的数学函数
程序员文章站
2024-02-10 13:17:34
...
abs( ) 求一个数的绝对值
在pg中,abs()括号中既可以跟数值,也可以跟字符串类型的数值
select abs('-888');
-- 返回的结果为888,是正值
cbrt(double) 求一个数的立方根
select cbrt(8)
-- 返回结果为 2
ceil(double/numeric) 返回结果为:不小于参数的最小的整数
select ceil(-43.5)
-- 返回结果为 -43
select ceil(43.5)
-- 返回结果为44
mod(y, x) 取余数
select mod(23,4)
-- 结果为3
power(a double/numeric, b double/numeric) double 求a的b次幂
select power(2,3)
-- 返回结果为 二的三次方 8
random() double 0.0到1.0之间的随机数值
select random()
四舍五入函数round(x)和round(x,y)
round(34.446,2)
-- 返回结果为34.45
sqrt(double/numeric) 平方根
select sqrt(4)
-- 返回结果为2