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_nameDescription
Upgrading a UDF
Examples
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 |
+-------+------+------------------------------------------------+Last updated
Was this helpful?

