mysql update ...select的使用 & update 遇到 disable safe 的解决方法
Posted iDEAAM 爱地爱木
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql update ...select的使用 & update 遇到 disable safe 的解决方法相关的知识,希望对你有一定的参考价值。
use `testdb`; update dtable d INNER JOIN new_table n ON d.details = n.details set d.email = n.email, d.cellphone =n.cellphone,d.contact = n.contact,d.address = n.address
update 遇到 disable safe
使用 以下语句解决
SET SQL_SAFE_UPDATES=0;
以上是关于mysql update ...select的使用 & update 遇到 disable safe 的解决方法的主要内容,如果未能解决你的问题,请参考以下文章
mysql远程执行select,insert into都可以,update执行不了,本机update却可以。