您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關exists與in語法在sql中有什么不同,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
exists和in的區別很小,幾乎可以等價,但是sql優化中往往會注重效率問題,今天咱們就來說說exists和in的區別。
exists語法:
select … from table where exists (子查詢)
將主查詢的結果,放到子查詢結果中進行校驗,如子查詢有數據,則校驗成功,那么符合校驗,保留數據。
create table teacher ( tid int(3), tname varchar(20), tcid int(3) ); insert into teacher values(1,'tz',1); insert into teacher values(2,'tw',2); insert into teacher values(3,'tl',3);
例如:
select tname from teacher exists(select * from teacher);
此sql語句等價于select tname from teacher
(主查詢數據存在于子查詢,則查詢成功(校驗成功))
此sql返回為空,因為子查詢并不存在這樣的數據。
in語法:
select … from table where 字段 in (子查詢)
select ..from table where tid in (1,3,5) ;
select * from A where id in (select id from B);
區別:
如果主查詢的數據集大,則使用in;
如果子查詢的數據集大,則使用exists;
例如:
select tname from teacher where exists (select * from teacher);
這里很明顯,子查詢查詢所有,數據集大,使用exists,效率高。
select * from teacher where tname in (select tname from teacher where tid = 3);
這里很明顯,主查詢數據集大,使用in,效率高。
以上就是exists與in語法在sql中有什么不同,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。