SQL 避免使用 IN 和 NOT IN
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
WHY?IN 和 NOT IN 是比較常用的關(guān)鍵字,為什么要盡量避免呢? 1、效率低項(xiàng)目中遇到這么個(gè)情況: t1表 和 t2表 都是150w條數(shù)據(jù),600M的樣子,都不算大。 但是這樣一句查詢 ↓ select * from t1 where phone not in (select phone from t2) 直接就把我跑傻了。。。 十幾分鐘,檢查了一下 phone在兩個(gè)表都建了索引,字段類型也是一樣的。原來(lái) not in 是不能命中索引的。。。。 改成 NOT EXISTS 之后查詢 20s ,效率真的差好多。 select * from t1 where not EXISTS (select phone from t2 where t1.phone =t2.phone) 2、容易出現(xiàn)問(wèn)題,或查詢結(jié)果有誤 (不能更嚴(yán)重的缺點(diǎn))以 IN 為例。 建兩個(gè)表:test1 和 test2 create table test1 (id1 int) create table test2 (id2 int) insert into test1 (id1) values (1),(2),(3) insert into test2 (id2) values (1),(2) 我想要查詢,在test2中存在的 test1中的id 。 使用 IN 的一般寫(xiě)法是: select id1 from test1 where id1 in (select id2 from test2) 結(jié)果是: ![]() OK 木有問(wèn)題! 但是如果我一時(shí)手滑,寫(xiě)成了: select id1 from test1 where id1 in (select id1 from test2) 不小心把id2寫(xiě)成id1了 ,會(huì)怎么樣呢? 結(jié)果是: ![]() EXCUSE ME!為什么不報(bào)錯(cuò)? 單獨(dú)查詢 這僅僅是容易出錯(cuò)的情況,自己不寫(xiě)錯(cuò)還沒(méi)啥事兒,下面來(lái)看一下 NOT IN 直接查出錯(cuò)誤結(jié)果的情況: insert into test2 (id2) values (NULL) 我想要查詢,在test2中不存在的 test1中的 id 。 select id1 from test1 where id1 not in (select id2 from test2) ![]() 空白!顯然這個(gè)結(jié)果不是我們想要的。我們想要3。為什么會(huì)這樣呢? 原因是:NULL不等于任何非空的值??!如果id2只有1和2, 那么3<>1 且 3<>2 所以3輸出了,但是 id2包含空值,那么 3也不等于NULL 所以它不會(huì)輸出。
HOW?1、用 EXISTS 或 NOT EXISTS 代替select * from test1 where EXISTS (select * from test2 where id2 = id1) select * FROM test1 where NOT EXISTS (select * from test2 where id2 = id1) 2、用JOIN 代替select id1 from test1 INNER JOIN test2 ON id2 = id1 select id1 from test1 LEFT JOIN test2 ON id2 = id1 where id2 IS NULL PS:那我們死活都不能用 IN 和 NOT IN 了么?并沒(méi)有,一位大神曾經(jīng)說(shuō)過(guò),如果是確定且有限的集合時(shí),可以使用。如 IN (0,1,2)。
該文章在 2024/3/12 19:24:04 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |