man > ALTER_AGGREGATE(7)

πŸ“– NAME

ALTER_AGGREGATE β€” change the definition of an aggregate function

πŸš€ Quick Reference

Use Case Command Description
Rename aggregate function ALTER AGGREGATE name ( aggregate_signature ) RENAME TO new_name; πŸ”€ Change the name of an existing aggregate.
Change owner ALTER AGGREGATE name ( aggregate_signature ) OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }; πŸ‘€ Transfer ownership of the aggregate to another role.
Move to different schema ALTER AGGREGATE name ( aggregate_signature ) SET SCHEMA new_schema; πŸ“‚ Relocate the aggregate to a new schema.

πŸ“ SYNOPSIS

ALTER AGGREGATE name ( aggregate_signature ) RENAME TO new_name
ALTER AGGREGATE name ( aggregate_signature )
                OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
ALTER AGGREGATE name ( aggregate_signature ) SET SCHEMA new_schema

where aggregate_signature is:

* |
[ argmode ] [ argname ] argtype [ , ... ] |
[ [ argmode ] [ argname ] argtype [ , ... ] ] ORDER BY [ argmode ] [ argname ] argtype [ , ... ]

πŸ“‹ DESCRIPTION

πŸ”§ ALTER AGGREGATE changes the definition of an aggregate function.

πŸ”‘ You must own the aggregate function to use ALTER AGGREGATE. To change the schema of an aggregate function, you must also have CREATE privilege on the new schema. To alter the owner, you must also be a direct or indirect member of the new owning role, and that role must have CREATE privilege on the aggregate function's schema. (These restrictions enforce that altering the owner doesn't do anything you couldn't do by dropping and recreating the aggregate function. However, a superuser can alter ownership of any aggregate function anyway.)

βš™οΈ PARAMETERS

πŸ“Œ NOTES

πŸ’‘ The recommended syntax for referencing an ordered‑set aggregate is to write ORDER BY between the direct and aggregated argument specifications, in the same style as in CREATE AGGREGATE. However, it will also work to omit ORDER BY and just run the direct and aggregated argument specifications into a single list. In this abbreviated form, if VARIADIC "any" was used in both the direct and aggregated argument lists, write VARIADIC "any" only once.

πŸ§ͺ EXAMPLES

πŸ”Ή Rename the aggregate function myavg for type integer to my_average:

ALTER AGGREGATE myavg(integer) RENAME TO my_average;

πŸ”Ή Change the owner of the aggregate function myavg for type integer to joe:

ALTER AGGREGATE myavg(integer) OWNER TO joe;

πŸ”Ή Move the ordered‑set aggregate mypercentile with direct argument of type float8 and aggregated argument of type integer into schema myschema:

ALTER AGGREGATE mypercentile(float8 ORDER BY integer) SET SCHEMA myschema;

πŸ”Ή This will work too:

ALTER AGGREGATE mypercentile(float8, integer) SET SCHEMA myschema;

πŸ”— COMPATIBILITY

⚠️ There is no ALTER AGGREGATE statement in the SQL standard.

πŸ“š SEE ALSO

πŸ”— CREATE AGGREGATE (CREATE_AGGREGATE(7)), DROP AGGREGATE (DROP_AGGREGATE(7))


PostgreSQL 14.23   2026   ALTER AGGREGATE(7)

ALTER_AGGREGATE(7)
πŸ“– NAME πŸš€ Quick Reference πŸ“ SYNOPSIS πŸ“‹ DESCRIPTION βš™οΈ PARAMETERS πŸ“Œ NOTES πŸ§ͺ EXAMPLES πŸ”— COMPATIBILITY πŸ“š SEE ALSO

Generated by phpman v4.10.0-16-g1a0e228 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-09-21 09:59 @216.73.216.75
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^