|
DROP AGGREGATENameDROP AGGREGATE — Removes the definition of an aggregate functionDROP AGGREGATE name type Inputs
Outputs
DescriptionDROP AGGREGATE will remove all references to an existing aggregate definition. To execute this command the current user must be the owner of the aggregate. NotesUse CREATE AGGREGATE to create aggregate functions. UsageTo remove the myavg aggregate for type int4: DROP AGGREGATE myavg int4; CompatibilitySQL92There is no DROP AGGREGATE statement in SQL92; the statement is a Postgres language extension. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |