oracle数据库语句积累
Posted aegisada
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle数据库语句积累相关的知识,希望对你有一定的参考价值。
1、从一个表选出数据更新另一个表(后面的exists一定要加)
update jqhdzt set shid = (select shid from v_plat_userjqinfo t where jqhdzt.jqbh = t.JQBH and jqhdzt.shid <> t.SHID) where shid = ‘0000010047‘ and exists (select 1 from v_plat_userjqinfo t where jqhdzt.jqbh = t.JQBH and jqhdzt.shid <> t.SHID)
以上是关于oracle数据库语句积累的主要内容,如果未能解决你的问题,请参考以下文章
[工作积累] UE4 并行渲染的同步 - Sync between FParallelCommandListSet & FRHICommandListImmediate calls(代码片段