sqlserver exists,not exists的用法

时间:2024-01-22 02:13:26 

学生表: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表的数据:
        ID NAME            DEPTMENT_ID
---------- --------------- -----------
         1 echo                   1000
         2 spring                 2000
         3 smith                  1000
         4 liter                  2000

course表的数据:
        ID C_NAME               C_NO
---------- -------------------- --------
         1 数据库               data1
         2 数学                 month1
         3 英语                 english1

select_course表的数据:
        ID STUDENT_ID  COURSE_ID
---------- ---------- ----------
         1          1          1
         2          1          2
         3          1          3
         4          2          1
         5          2          2
         6          3          2

1.查询选修了所有课程的学生id、name:(即这一个学生没有一门课程他没有选的。)

分析:如果有一门课没有选,则此时(1)select * from select_course sc where sc.student_id=ts.id

and sc.course_id=c.id存在null,

这说明(2)select * from course c 的查询结果中确实有记录不存在(1查询中),查询结果返回没有选的课程,

此时select * from t_student ts 后的not exists 判断结果为false,不执行查询。

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.查询没有选择所有课程的学生,即没有全选的学生。(存在这样的一个学生,他至少有一门课没有选),

分析:只要有一个门没有选,即select * from select_course sc where student_id=t_student.id and course_id
=course.id 有一条为空,即not exists null 为true,此时select * from course有查询结果(id为子查询中的course.id ),

因此select id,name from t_student 将执行查询(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.查询一门课也没有选的学生。(不存这样的一个学生,他至少选修一门课程),

分析:如果他选修了一门select * from course结果集不为空,not exists 判断结果为false;

select id,name from t_student 不执行查询。

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.查询至少选修了一门课程的学生。
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

标签:sqlserver,exists,not,exists
0
投稿

猜你喜欢

  • Symfony2实现从数据库获取数据的方法小结

    2023-11-14 13:56:35
  • Python实现的特征提取操作示例

    2023-02-07 06:08:04
  • python 安全地删除列表元素的方法

    2022-11-20 16:21:35
  • 处理SQL Server 2000的命名实例和多实例

    2009-01-19 13:28:00
  • Mysql使用sum()函数返回null的问题详解

    2024-01-17 03:20:04
  • Dreamweaver MX 2004 试用心得

    2010-03-25 12:21:00
  • matplotlib中legend位置调整解析

    2023-07-17 03:00:44
  • 分析python垃圾回收机制原理

    2022-04-25 04:57:16
  • 在Python程序中操作文件之flush()方法的使用教程

    2023-12-02 16:41:31
  • 如何做一个文本搜索?

    2010-07-12 19:00:00
  • Vue如何实现多页面配置以及打包方式

    2024-05-02 17:09:11
  • MySql COALESCE函数使用方法代码案例

    2024-01-14 03:47:25
  • HTML4标签的默认样式列表

    2007-09-28 22:00:00
  • Python深度学习实战PyQt5信号与槽的连接

    2023-03-07 20:33:43
  • Pytorch 实现变量类型转换

    2021-09-27 23:35:47
  • Python实现针对给定字符串寻找最长非重复子串的方法

    2022-12-05 14:38:53
  • 功能强大的php分页函数

    2023-11-15 03:17:37
  • 做设计还是做产品

    2009-06-11 13:01:00
  • mysql 实现添加时间自动添加更新时间自动更新操作

    2024-01-14 15:58:59
  • TensorFlow人工智能学习数据类型信息及转换

    2022-11-02 09:12:55
  • asp之家 网络编程 m.aspxhome.com