All pages
Powered by GitBook
1 of 1

Loading...

DROP FUNCTION UDF

Documentation for the DROP FUNCTION statement, which uninstalls a UDF and removes its entry from the system table.

Syntax

DROP FUNCTION [IF EXISTS] function_name

Description

This statement drops the user-defined function (UDF) named function_name.

To drop a function, you must have the for the mysql database. This is because DROP FUNCTION removes the row from the system table that records the function's name, type and shared library name.

For dropping a stored function, see .

Upgrading a UDF

To upgrade the UDF's shared library, first run a statement, then upgrade the shared library and finally run the CREATE FUNCTION statement. If you upgrade without following this process, you may crash the server.

Examples

IF EXISTS:

This page is licensed: GPLv2, originally from

DELETE privilege
mysql.func
DROP FUNCTION
DROP FUNCTION
fill_help_tables.sql
DROP FUNCTION jsoncontains_path;
DROP FUNCTION jsoncontains_path;
ERROR 1305 (42000): FUNCTION test.jsoncontains_path does not exist

DROP FUNCTION IF EXISTS jsoncontains_path;
Query OK, 0 rows affected, 1 warning (0.00 sec)

SHOW WARNINGS;
+-------+------+------------------------------------------------+
| Level | Code | Message                                        |
+-------+------+------------------------------------------------+
| Note  | 1305 | FUNCTION test.jsoncontains_path does not exist |
+-------+------+------------------------------------------------+