在Postgresql中,您可以使用创建其他聚合函数
CREATE AGGREGATE name(...);
但是如果聚合已经存在于数据库中,则会出现错误,因此如何检查Postgres数据库中是否已存在聚合?
SELECT * FROM pg_proc WHERE proname = 'name' AND proisagg;
http://www.postgresql.org/docs/8.3/interactive/catalogs-overview.html
http://www.postgresql.org/docs/8.3/interactive/catalog-pg-aggregate.html
http://www.postgresql.org/docs/8.3/interactive/catalog-pg-proc.html