Oracle in 查询数据
Posted 影子影
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle in 查询数据相关的知识,希望对你有一定的参考价值。
问题描述:
查询所有的数据,查询结果:146360
select count(1) from bank_cde;
in查询的获取部分数据,查询结果 :73080
select count(1) from bank_cde t where t.belongcode2 in(‘ABC‘,‘BCOM‘,‘BOC‘,‘CCB‘,‘CEB‘,‘CGB‘,‘CIB‘,‘CITIC‘,‘CMBC‘,‘ICBC‘,‘PAB‘,‘POST‘,‘SPDB‘);
not in查询数据,结果为0
select count(1) from bank_cde t where t.belongcode2 not in(‘ABC‘,‘BCOM‘,‘BOC‘,‘CCB‘,‘CEB‘,‘CGB‘,‘CIB‘,‘CITIC‘,‘CMBC‘,‘ICBC‘,‘PAB‘,‘POST‘,‘SPDB‘);
原因:
本以为in 和not in 为查询两种结果互补,还有一种情况 为 null
select count(1) from bank_cde t where t.belongcode2 is null;
以上是关于Oracle in 查询数据的主要内容,如果未能解决你的问题,请参考以下文章
oracle sql查询中用in列表中最大表达式数大于1000的处理
oracle sql查询中用in列表中最大表达式数大于1000的处理
ElasticSearch学习问题记录——Invalid shift value in prefixCoded bytes (is encoded value really an INT?)(代码片段