oracle的where not in 语句不能应付超大数据量的排查,怎么办
两个表,数据量都在15000左右,我要查第一个表里名称字段在第二个表里也存在的所有记录:selectmcfrom表1wheremcin(selectmcfrom表2)结果...
两个表,数据量都在15000左右,我要查第一个表里名称字段在第二个表里也存在的所有记录:select mc from 表1 where mc in (select mc from 表2)
结果查询出600条但是
当我查询第一个表里名称字段在第二个表里不存在的所有记录:select mc from 表1 where mc where in (select mc from 表2)的时候,却查询不出任何记录,而且当我将第二个表的查询数据量降低为9413条以下的时候:select mc from 表1 where mc where in (select mc from 表2 where rownum<9413)却能查出记录了,再加一条就查不出任何数据了,按照第一个查询语句的结果,第二个结果明显不正确啊,相同的600条,那么不同的肯定是一万多啊,为什么出现这么奇怪的问题?这到底如何解释呢,难道数据量太大会导致oracle这个语句的崩溃?
不好意思 打错了,应该是
select mc from 表1 where mc where not in (select mc from 表2 where rownum<9413) 展开
结果查询出600条但是
当我查询第一个表里名称字段在第二个表里不存在的所有记录:select mc from 表1 where mc where in (select mc from 表2)的时候,却查询不出任何记录,而且当我将第二个表的查询数据量降低为9413条以下的时候:select mc from 表1 where mc where in (select mc from 表2 where rownum<9413)却能查出记录了,再加一条就查不出任何数据了,按照第一个查询语句的结果,第二个结果明显不正确啊,相同的600条,那么不同的肯定是一万多啊,为什么出现这么奇怪的问题?这到底如何解释呢,难道数据量太大会导致oracle这个语句的崩溃?
不好意思 打错了,应该是
select mc from 表1 where mc where not in (select mc from 表2 where rownum<9413) 展开
展开全部
where not in如果数据量过大,可采用not exists的方式来写语句。
如有以下语句:
select distinct phone_number from zj_jituan_3g where phone_number not in (select phone_number from zj_34g_201512);
可改写为:
select distinct a.phone_number from zj_jituan_3g a where not exists
(select 1 from zj_34g_201512 b where a.phone_number=b.phone_number);
展开全部
使用in 或 not in是用不上索引的,可以考虑在小表中使用,而exists或not exists 能用上索引,可以考虑在大数据量表中使用;select mc from 表1 t1 where exists(select 1 from 表2 t2 where t1.mc = t2.mc);select mc from 表1 t1 where not exists(select 1 mc from 表2 t2 where t1.mc = t2.mc);楼上推荐答案里应该使用not exists;另外,问题中的2个表按说数据量都不大,即使用 not in 用不上索引全表扫也不应该查不出来,应该检查一下还有没有别的问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
尽量使用exists语句,不要用in
select mc from 表1 t1 where exists(select 1 mc from 表2 t2 where t1.mc = t2.mc)
select mc from 表1 t1 where exists(select 1 mc from 表2 t2 where t1.mc = t2.mc)
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
进行数据调优!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
话说你在哪里用到了not in 了。
使用minus
使用minus
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询