《MysqL必读解析MysqL与Oracle update的区别》要点:
本文介绍了MysqL必读解析MysqL与Oracle update的区别,希望对您有用。如果有疑问,可以联系我们。
代码如下:
Oracle> Oracle的多表更新要求比较严格,所以有的时候不是很好写,我们可以试试Oracle的游标
update (
select t.charger_ID_ new_charger_ID_
from t_cus_year_status t
left join t_customer_infos cus on cus.ID_ = t.cus_ID_
where....
) n set n.new_charger_ID_ =6;
代码如下:
MysqL>
update t_cus_year_status t
left join t_customer_infos cus on cus.ID_ = t.cus_ID_
set t.charger_ID_ =6
where......;
总结
以上是内存溢出为你收集整理的Mysql必读解析mysql与Oracle update的区别全部内容,希望文章能够帮你解决Mysql必读解析mysql与Oracle update的区别所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)