ALTER FUNCTION
Change stored function characteristics. This statement allows modifying the security context or comments of a stored function without dropping it.
Syntax
ALTER FUNCTION func_name [characteristic ...]
characteristic:
{ CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }
| SQL SECURITY { DEFINER | INVOKER }
| COMMENT 'string'Description
Example
ALTER FUNCTION hello SQL SECURITY INVOKER;See Also
Last updated
Was this helpful?

