MySQL 1418报错解决办法

 报错[Err]1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)

在MySQL新建查询输入:

mysql> show variables like '%func%';  

+---------------------------------+-------+  
| Variable_name                   | Value |  
+---------------------------------+-------+  
| log_bin_trust_function_creators | OFF   |  
+---------------------------------+-------+  
1 row in set (0.00 sec)  
  
mysql> set global log_bin_trust_function_creators=1;  
Query OK, 0 rows affected (0.00 sec)  
  

posted @ 2019-10-24 15:29  Poetics  阅读(647)  评论(0编辑  收藏  举报