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
以上是内存溢出为你收集整理的postgresql – 如何检查Postgres中的现有聚合函数?全部内容,希望文章能够帮你解决postgresql – 如何检查Postgres中的现有聚合函数?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)