Removes an aggregate function.
DROP AGGREGATE [IF EXISTS] <name> ( <type> [, ...] ) [CASCADE | RESTRICT]
DROP AGGREGATE
will delete an existing aggregate function. To execute this command the current user must be the owner of the aggregate function.
*
in place of the list of input data types.
To remove the aggregate function myavg
for type integer
:
DROP AGGREGATE myavg(integer);
There is no DROP AGGREGATE
statement in the SQL standard.
ALTER AGGREGATE, CREATE AGGREGATE
Parent topic: SQL Command Reference