当前位置:
首页 >
mysql读书笔记---mysql safe update mode
发布时间:2023/12/10
48
豆豆
生活随笔
收集整理的这篇文章主要介绍了
mysql读书笔记---mysql safe update mode
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
查看
mysql> show variables like '%sql_safe%';
关闭
mysql> set sql_safe_updates=0;
开启
mysql> set sql_safe_updates=1;
总结
以上是生活随笔为你收集整理的mysql读书笔记---mysql safe update mode的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: Centos7搭建coreseek
- 下一篇: oracle 11g数据库数据操作(亲测