欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL数据库开启、关闭、查看函数功能的方法

程序员文章站 2024-03-31 15:57:28
应用 mysql 时,会遇到不能创建函数的情况。出现如下错误信息: 复制代码 代码如下: error 1418 : this function has none of...

应用 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%';