DROP FUNCTION
Delete a custom function. Function names and parameter types are exactly the same to be deleted.
grammar:
DROP FUNCTION function_name (arg_type [, ...])
Parameter Description:
function_name: the name of the function to deletearg_type: the argument list of the function to deleteDelete a function
DROP FUNCTION my_add(INT, INT)
DROP, FUNCTION