Removes a user-defined function.
DROP FUNCTION name ( [ type [, ...] ] )
name
The name of the existing function you wish to drop.
type
Zero or more data types consisting of the function’s arguments. The types combine with the name to uniquely identify the function.
Use this command to remove C function references that are defined in a database. Specifying the parameter types that the function takes allows proper identification; this is necessary when dealing with the C language, as functions exist with the same name that only differ in the types of arguments they take.