DROP-FUNCTION

Name

DROP FUNCTION

Description

Delete a custom function. Function names and parameter types are exactly the same to be deleted.

grammar:

  1. DROP FUNCTION function_name
  2. (arg_type [, ...])

Parameter Description:

  • function_name: the name of the function to delete
  • arg_type: the argument list of the function to delete

Example

  1. Delete a function

    1. DROP FUNCTION my_add(INT, INT)

Keywords

  1. DROP, FUNCTION

Best Practice