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 = INTEG
相關文章
相關標籤/搜索