主頁(yè) > 知識(shí)庫(kù) > sqlserver exists,not exists的用法

sqlserver exists,not exists的用法

熱門(mén)標(biāo)簽:廣東防封卡外呼系統(tǒng)原理是什么 菏澤語(yǔ)音電銷機(jī)器人加盟公司 分享百度地圖標(biāo)注多個(gè)位置 長(zhǎng)沙智能外呼系統(tǒng) 外呼系統(tǒng)改進(jìn) 地圖標(biāo)注牌 湖南電腦外呼系統(tǒng)平臺(tái) 電銷機(jī)器人公司 需要哪些牌照 知名電銷機(jī)器人價(jià)格
學(xué)生表:create table student
(
 id number(8) primary key,
 name varchar2(10),deptment number(8)
)
選課表:create table select_course
(
  ID         NUMBER(8) primary key,
  STUDENT_ID NUMBER(8) foreign key (COURSE_ID) references course(ID),
  COURSE_ID  NUMBER(8) foreign key (STUDENT_ID) references student(ID)
)
課程表:create table COURSE
(
  ID     NUMBER(8) not null,
  C_NAME VARCHAR2(20),
  C_NO   VARCHAR2(10)
)
student表的數(shù)據(jù):
        ID NAME            DEPTMENT_ID
---------- --------------- -----------
         1 echo                   1000
         2 spring                 2000
         3 smith                  1000
         4 liter                  2000
course表的數(shù)據(jù):
        ID C_NAME               C_NO
---------- -------------------- --------
         1 數(shù)據(jù)庫(kù)               data1
         2 數(shù)學(xué)                 month1
         3 英語(yǔ)                 english1
select_course表的數(shù)據(jù):
        ID STUDENT_ID  COURSE_ID
---------- ---------- ----------
         1          1          1
         2          1          2
         3          1          3
         4          2          1
         5          2          2
         6          3          2
1.查詢選修了所有課程的學(xué)生id、name:(即這一個(gè)學(xué)生沒(méi)有一門(mén)課程他沒(méi)有選的。)
分析:如果有一門(mén)課沒(méi)有選,則此時(shí)(1)select * from select_course sc where sc.student_id=ts.id 
and sc.course_id=c.id存在null,
這說(shuō)明(2)select * from course c 的查詢結(jié)果中確實(shí)有記錄不存在(1查詢中),查詢結(jié)果返回沒(méi)有選的課程,
此時(shí)select * from t_student ts 后的not exists 判斷結(jié)果為false,不執(zhí)行查詢。
SQL> select * from t_student ts where not exists
 (select * from course c where not exists
   (select * from select_course sc where sc.student_id=ts.id and sc.course_id=c.id));       
        ID NAME            DEPTMENT_ID
---------- --------------- -----------
         1 echo                   1000
2.查詢沒(méi)有選擇所有課程的學(xué)生,即沒(méi)有全選的學(xué)生。(存在這樣的一個(gè)學(xué)生,他至少有一門(mén)課沒(méi)有選),
分析:只要有一個(gè)門(mén)沒(méi)有選,即select * from select_course sc where student_id=t_student.id and course_id
=course.id 有一條為空,即not exists null 為true,此時(shí)select * from course有查詢結(jié)果(id為子查詢中的course.id ),
因此select id,name from t_student 將執(zhí)行查詢(id為子查詢中t_student.id )。
SQL> select id,name from t_student where exists
	(select * from course where not exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME
---------- ---------------
         2 spring
         3 smith
         4 liter
3.查詢一門(mén)課也沒(méi)有選的學(xué)生。(不存這樣的一個(gè)學(xué)生,他至少選修一門(mén)課程),
分析:如果他選修了一門(mén)select * from course結(jié)果集不為空,not exists 判斷結(jié)果為false;
select id,name from t_student 不執(zhí)行查詢。
SQL> select id,name from t_student where not exists
	(select * from course where exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME
---------- ---------------
         4 liter
4.查詢至少選修了一門(mén)課程的學(xué)生。
SQL> select id,name from t_student where exists
	(select * from course where  exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME
---------- ---------------
         1 echo
         2 spring
         3 smith

標(biāo)簽:西寧 珠海 商洛 泉州 福建 天水 美容院 呼和浩特

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sqlserver exists,not exists的用法》,本文關(guān)鍵詞  sqlserver,exists,not,的,用法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sqlserver exists,not exists的用法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于sqlserver exists,not exists的用法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章