Deleting a Function

Function

This statement is used to delete functions.

Syntax

1
DROP [TEMPORARY] FUNCTION [IF EXISTS] [db_name.] function_name;

Keywords

Precautions

Example

The mergeBill function is deleted.

1
DROP FUNCTION mergeBill;