DROP FUNCTION
Description
The DROP FUNCTION
statement drops a temporary or user defined function (UDF). An exception will
be thrown if the function does not exist.
Syntax
Parameters
function_name
- The name of an existing function.
TEMPORARY
- Should be used to delete the `temporary` function.
IF EXISTS
- If specified, no exception is thrown when the function does not exist.