oracle怎么查找不同 oracle查询另一个数据库的表

请问oracle中如何根据条件查询出不同的字段? 比如说如果查询出status为1,那么我就查询字【oracle怎么查找不同 oracle查询另一个数据库的表】select case when status = '1' then 字段一 when status = '2' then 字段二 end 字段_case,
decode(status, '1', 字段一, '2', 字段二) 字段_decode
from 表
case when适合多条件,格式好看点,decode适合少条件 , 简洁 。
Oracle中找出两表中不一样的数据如果是A,B 表格都有需要删除的可以分两次操作 , A.ID NOT IN B.ID,可以找出A中不同数据,然后DELETE,可以用同样的方法删除B表格中数据
ORACLE怎么查询两张表的不同字段select id,code,name
from B
where not exists (select 1 from A where b.id=a.id and b.code=a.code and b.name=a.name)
关于oracle怎么查找不同和oracle查询另一个数据库的表的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读