postgresql 自定义aggregate function实现reduce

前端之家收集整理的这篇文章主要介绍了postgresql 自定义aggregate function实现reduce前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
create or replace function lmy(first INTEGER,item INTEGER) returns INTEGER as $$
BEGIN
  return first * item;
END;
$$
LANGUAGE plpgsql;

create aggregate yml(INTEGER) (
  sfunc = lmy,stype = INTEGER,initcond = 1
);

isnp=# select i,yml(i) over (order by i) from generate_series(1,10) i;

@H_301_74@
i yml
1 1
2 2
3 6
4 24
5 120
6 720
7 5040
8 40320
9 362880
10 3628800
原文链接:https://www.f2er.com/postgresql/194344.html

猜你在找的Postgre SQL相关文章