国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > SQL Server > 正文

sqlserver exists,not exists的用法

2024-08-31 00:59:05
字體:
供稿:網(wǎng)友
學(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                  2000course表的數(shù)據(jù):
        ID C_NAME               C_NO
---------- -------------------- --------
         1 數(shù)據(jù)庫               data1
         2 數(shù)學(xué)                 month1
         3 英語                 english1select_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          21.查詢選修了所有課程的學(xué)生id、name:(即這一個學(xué)生沒有一門課程他沒有選的。)分析:如果有一門課沒有選,則此時(1)select * from select_course sc where sc.student_id=ts.id and sc.course_id=c.id存在null,這說明(2)select * from course c 的查詢結(jié)果中確實有記錄不存在(1查詢中),查詢結(jié)果返回沒有選的課程,此時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                   10002.查詢沒有選擇所有課程的學(xué)生,即沒有全選的學(xué)生。(存在這樣的一個學(xué)生,他至少有一門課沒有選),分析:只要有一個門沒有選,即select * from select_course sc where student_id=t_student.id and course_id
=course.id 有一條為空,即not exists null 為true,此時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 liter3.查詢一門課也沒有選的學(xué)生。(不存這樣的一個學(xué)生,他至少選修一門課程),分析:如果他選修了一門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 liter4.查詢至少選修了一門課程的學(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
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 章丘市| 通州市| 望江县| 大同县| 沈丘县| 库尔勒市| 竹山县| 商河县| 洪江市| 翼城县| 荣成市| 新乡市| 上犹县| 抚松县| 宣化县| 新源县| 灵宝市| 湾仔区| 荣成市| 略阳县| 太保市| 浦东新区| 云南省| 榆林市| 准格尔旗| 蚌埠市| 固镇县| 沈阳市| 开鲁县| 黎城县| 曲周县| 施甸县| 丰城市| 白玉县| 福安市| 钦州市| 增城市| 临桂县| 宜春市| 灵璧县| 澎湖县|