案例
--求余 1
select 5%2 as t;
--绝对值 17.4
select abs(-17.4) as t2;
-- 大于等于最小整数 -42
select ceil(-42.8) as t3;
-- 小于等于的最大整数 42
select floor(42.3) as t4;
-- 四舍五入 44
select round(43.6) as t5;
-- 向零取整 12
select trunc(12.6) as t6;
-- 随机数
-- random()返回一个大于等于 0 小于 1 的随机数,类型为双精度浮点数。
select random() as t7;
-- 随机返回员工姓名
select
e.first_name
from cps.public.employees e
order by random() ;
-- 随机返回10个员工姓名
select
e.first_name
from cps.public.employees e
order by random()
limit 10;
文章来源地址https://www.toymoban.com/news/detail-705207.html
文章来源:https://www.toymoban.com/news/detail-705207.html
到了这里,关于postgresql-常用数学函数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!