Error while executing script in MYSQL workbench
Error
Error Code: 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)
Solution
Execute the below Command in the MySQL console or Workbench:
SET GLOBAL log_bin_trust_function_creators = 1;
For Permanent solution add the below parameter in mysql.ini file:
log_bin_trust_function_creators = 1;