NameDROP AGGREGATE -- remove an aggregate function
Synopsis
DROP AGGREGATE [ IF EXISTS ] name ( aggregate_signature ) [ CASCADE | RESTRICT ]
where aggregate_signature is:
* |
[ argmode ] [ argname ] argtype [ , ... ] |
[ [ argmode ] [ argname ] argtype [ , ... ] ] ORDER BY [ argmode ] [ argname ] argtype [ , ... ]
Description DROP AGGREGATE removes an existing aggregate function. To execute this command the current user must be the owner of the aggregate function.
Parameters IF