解析mysql与Oracle update的区别
程序员文章站
2024-02-23 14:57:58
update :单表的更新不用说了,两者一样,主要说说多表的更新复制代码 代码如下: 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......;
复制代码 代码如下:
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与Oracle update的区别
-
解析sql语句中left_join、inner_join中的on与where的区别
-
mysql中order by与group by的区别
-
mysql清空表数据的两种方式和区别解析
-
MySQL中UPDATE与DELETE语句的使用教程
-
深入解析半同步与异步的MySQL主从复制配置
-
深入解析mysql中order by与group by的顺序问题
-
解析mysql中max_connections与max_user_connections的区别
-
JAVA中StringBuffer与String的区别解析
-
解析mysql二进制日志处理事务与非事务性语句的区别