文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>informix 中minus和intersect

informix 中minus和intersect

时间:2010-10-20  来源:marvelyu

日常工作中,我们常需要在数据库中实现如下功能,查询在a表而不再b表的数据,或者既在a表有在b表的数据。 在oracle中前者使用minus,后者使用intersect实现,在informix中没有这样功能,但可以等价: 在a表但不在b表 select * from a
where not exists (
select * from b  
where   b.col1=a.col1 and b.co2=a.col2 and b.col3=a.col3 and ... and b.colN=a.colN
)
既在a表又在b表 select * from a
where    exists (
select * from b  
where   b.col1=a.col1 and b.col2=a.col2 and b.col3=a.col3 and ... and b.colN=a.colN
)
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载