postgrelsql contcat聚合函数

前端之家收集整理的这篇文章主要介绍了postgrelsql contcat聚合函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
CREATE OR REPLACE FUNCTION _concat(IN str1 text,IN str2 text,OUT str text) RETURNS text AS $BODY$ BEGIN str := ''; if str1 IS NOT NULL then str := str ||str1 ; end if; if str2 IS NOT NULL then str := str || str2 || ','; end if; END; $BODY$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION _concat(text,text) OWNER TO engires301; CREATE AGGREGATE concat ( BASETYPE = text,SFUNC = _concat,STYPE = text ); 原文链接:https://www.f2er.com/javaschema/285530.html

猜你在找的设计模式相关文章