oracle多条update语句,合并多个sql更新语句(Oracle)
我不是很擅长sql⽽且我尝试了⼀些东西.考虑到代码的性能,将这5个更新语句组合成单个语句的最佳⽅法是什么?会是⼀个很⼤的帮助.⾮常感谢!
码:
----------------1
Update main_table
set a = (case
..some code.. end)
where condition_2;
----------------2
Update main_table
set b = (case
..some code.. end)
where condition_2
----------------3
Update main_table
set c = (select x from sec_table where conditon_1)
where condition_2
----------------4
Update main_table
set d = (select y from sec_table where conditon_1)
where condition_2
update是什么----------------5
Update main_table
set e = (select z from sec_table where conditon_1)
where condition_2
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论