drop function

Drop a stored function

Syntax

drop_func:
          DROP FUNCTION func_name

Description

This statement can be used to drop (delete) a stored function. Note that this statement is not transactional—the function is deleted upon execution of the DROP statement.

Example

drop function my_sqrt;

See Also

CREATE FUNCTION