主頁 > 知識庫 > 詳解sql中exists和in的語法與區(qū)別

詳解sql中exists和in的語法與區(qū)別

熱門標簽:實體店地圖標注怎么標 股票配資電銷機器人 外呼系統(tǒng)會封嗎 地圖標注如何弄全套標 電銷機器人 深圳 萬利達綜合醫(yī)院地圖標注點 南京電銷外呼系統(tǒng)哪家好 武漢AI電銷機器人 在電子版地圖標注要收費嗎

exists和in的區(qū)別很小,幾乎可以等價,但是sql優(yōu)化中往往會注重效率問題,今天咱們就來說說exists和in的區(qū)別。
exists語法:
select … from table where exists (子查詢)
將主查詢的結果,放到子查詢結果中進行校驗,如子查詢有數(shù)據(jù),則校驗成功,那么符合校驗,保留數(shù)據(jù)。

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
(主查詢數(shù)據(jù)存在于子查詢,則查詢成功(校驗成功))

此sql返回為空,因為子查詢并不存在這樣的數(shù)據(jù)。
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);

區(qū)別:
如果主查詢的數(shù)據(jù)集大,則使用in;
如果子查詢的數(shù)據(jù)集大,則使用exists;
例如:

select tname from teacher where exists (select * from teacher);

這里很明顯,子查詢查詢所有,數(shù)據(jù)集大,使用exists,效率高。

select * from teacher where tname in (select tname from teacher where tid = 3);

這里很明顯,主查詢數(shù)據(jù)集大,使用in,效率高。

到此這篇關于sql中exists和in的語法與區(qū)別的文章就介紹到這了,更多相關sql中exists和in語法區(qū)別內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • MySQL exists 和in 詳解及區(qū)別
  • mySQL中in查詢與exists查詢的區(qū)別小結
  • 安裝mysql出錯”A Windows service with the name MySQL already exists.“如何解決
  • MYSQL IN 與 EXISTS 的優(yōu)化示例介紹
  • SQL查詢中in和exists的區(qū)別分析
  • mysql insert if not exists防止插入重復記錄的方法

標簽:濟寧 安徽 武威 濟源 泰安 廣東 汕頭 臺州

巨人網(wǎng)絡通訊聲明:本文標題《詳解sql中exists和in的語法與區(qū)別》,本文關鍵詞  詳解,sql,中,exists,和,的,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《詳解sql中exists和in的語法與區(qū)別》相關的同類信息!
  • 本頁收集關于詳解sql中exists和in的語法與區(qū)別的相關信息資訊供網(wǎng)民參考!
  • 推薦文章