oracle exists和 not exists 的用法
比如 a,b 关联列为 a.id = b.id,现在要取 a 中的数据,其中id在b中也存在:
select * from a where exists(select 1 from b where b.id = a.id)
或者:
现在要取 a 中的数据,其中id在b中 不存在:
select * from a where not exists(select 1 from b where a.id = b.id)
相关推荐
ItBJLan 2020-06-28
lhxxhl 2020-11-16
minggehenhao 2020-07-28
CARBON 2020-06-14
luotuofeile 2020-06-12
xiaobaif 2020-05-09
dreamhua 2020-03-28
huangliang00 2020-02-22
wklken的笔记 2020-02-15
萌亖 2020-02-10
郴州小程序 2020-01-24
liuyang000 2020-01-24
fengdos 2019-12-27
azhou 2019-12-25
明月清风精进不止 2019-11-30
herohope 2019-10-21
泓 2014-09-24