應用 MySQL 時,會遇到不能創建函數的情況。出現如下錯誤信息:
復制代碼 代碼如下:
ERROR 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函數功能:
復制代碼 代碼如下:
SET GLOBAL log_bin_trust_function_creators=1;
關閉MySQL函數功能:
復制代碼 代碼如下:
SET GLOBAL log_bin_trust_function_creators=0;
查看狀態:
復制代碼 代碼如下:
show variables like '%func%';