SQL高级子查询

一:编写子查询:

  查询学生“章涵”的班级编号,然后在学生表查询出与“章涵”的班级编号相同的学生编号、姓名、和班级编号

  1)select ClassID from studentinfo where studentname="章涵";//查询学生“章涵”的班级编号

          select id,name,ClassID from studentinfo where ClassID=(select ClassID from studentinfo where studentname="章涵");//查询与学生表某个学生的班级编号相同

2)select a.studentname from studentinfo a

   inner join exam b

   on a.id=b.studentid

   inner join subject c

   on c.id=b.subjectid

   where c.subjectname="基于C语言理解软件编程" and b.score =90;

二:在UPDATE、DELETE、INSERT语句中使用子查询

  1)UPDATE

      UPDATE exam set score=55//全部成绩修改为55

      where studentid=(//成绩修改为55的条件

      select id from studentinfo where studentname="章涵"

      and subjectid=(

      select id from subject where subjectname="基于C语言理解软件编程"

      ))

   2)DELETE

      DELETE from exam where studentid=(

      select id from studentinfo where studentname="章涵");

    3)INSERT

      INSERT 表名 select 字段列表 from 表名

三:高级子查询

  1)IN/NOT IN

    select a.studentname from studentinfo where id IN

    (select studentid from exam where score=90//查询成绩为90的学生编号

    and subjectid=

    (select subjectid from subject where subjectname="基于C语言理解软件编程"))//查询“基于C语言理解软件编程”课程编号

    select a.studentname from studentinfo where id NOT IN

    (select studentid from exam where score=90

    and subjectid=

    (select subjectid from subject where subjectname="基于C语言理解软件编程"))//查询没有参加“基于C语言理解软件编程”

  2)EXISTS/NOT EXISTS

    select studentid,exam from exam where subjectid=2 and exists(select studentid from exam where exam<60);//先查询成绩不及格的id,若返回至少一行,则进行查询                成绩表中subjectid=2的id和成绩信息

    select studentid,exam from exam where subjectid=2 and  not exists(select studentid from exam where exam<60);//先查询成绩不及格的id,若无返回值,则进行查询

      成绩表中subjectid=2的id和成绩信息

  3)ALL、ANY、SOME

    select * from exam where score > ALL(select score from exam where subjectid=1)//查询科目编号为1的这门课程的所有成绩都大的学生考试信息

    select * from exam where score > ANY(select score from exam where subjectid=1)//查询科目编号为1的任意一个成绩都大的学生考试信息

    select * from exam where score > SOME(select score from exam where subjectid=1)//查询科目编号为1的任意一个成绩都大的学生考试信息

      

原文地址:https://www.cnblogs.com/W19990605/p/11568582.html

时间: 2024-11-06 03:38:32

SQL高级子查询的相关文章

SQL高级部分一(SET运算符 &amp;&amp; 高级子查询)

一.SET运算符 将多个查询用 SET 操作符连接组成一个新的查询 select employee_id , department_id from emp01 union all --相当于两个集合相加, union A并B ,intersect ,A交B,MINUS 差集,A-B select employee_id , department_id from emp02 SET操作的注意事项 在SELECT 列表中的列名和表达式在数量和数据类型上要相对应 括号可以改变执行的顺序 ORDER B

SQL语句面试题目:一般查询和高级子查询

几个表 employees 表: EMPLOYEE_ID              NUMBER(6) FIRST_NAME                VARCHAR2(20) LAST_NAME                 VARCHAR2(25) EMAIL                               VARCHAR2(25) PHONE_NUMBER       VARCHAR2(20) HIRE_DATE                  DATE JOB_ID 

Oracle 学习笔记 14 -- 集合操作和高级子查询

Oracel提供了三种类型的集合操作:各自是并(UNION) .交(INTERSECT). 差(MINUS) UNION :将多个操作的结果合并到一个查询结果中,返回查询结果的并集,自己主动去掉反复的部分. UNION ALL:将多个操作的结果合并到一个查询结果中,可是保留反复的内容. INTERSECT: 返回多个操作结果中同样的部分. MINUS:返回两个查询结果的差集,去掉反复的部分. 基本的语法格式为: SELECT * FROM  table_name 1 [union , union

高级子查询【weber出品必属精品】

多列子查询 where条件中出现多列与子查询进行比较 多列子查询分为:成对比较和非成对比较 成对比较: SQL> select ename,sal,job from emp where (deptno,job) in(select deptno,job from emp where ename='SCOTT'); ENAME SAL JOB ------ ----- --------- FORD 3000 ANALYST SCOTT 4000 ANALYST 非成对比较: select enam

SQL用子查询结果更新多个字段

作者:iamlasong 要求:表格的内容需要变更,变更的内容放在一个临时表中,用SQL语句更新正式表中多个字段. 如果更新一个字段,直接用字段名=子查询就可以了,多个字段更新,将字段在括号中并列写出即可,如下: update tb_jg t set t.jgfl = 'sd', (     t.zj_code, t.zj_mc) = (select a.zj_code, a.zj_mc from song_temp a where a.zj_code = t.zj_code) where ex

SQL优化-子查询&case&limit

load 导数据.notesdxtdb 数据库    total_time  475.60秒. 监控服务:仓颉 select t_.*, a.name acquirer_name,m.merchant_name, am.merchant_name acq_merchant_name,                   ag.name agency_name            from              (            select t.* ,               

SQL Fundamentals: 子查询 || 行列转换(PIVOT,UNPIVOT,DECODE),设置数据层次(LEVEL...CONNECT BY)

SQL Fundamentals || Oracle SQL语言 子查询(基础) 1.认识子查询 2.WHERE子句中使用子查询 3.在HAVING子句中使用子查询 4.在FROM子句中使用子查询 5.在SELECT子句中使用子查询 6.WITH子句 子查询(进阶) 7.分析函数 8.行列转换 9.设置数据层次 八.行列转换 pivot和unpivot函数是Oracle 11g增加的新函数,利用此函数可以实现行列转换操作 按照原始方式实现,使用通用函数中的DECODE()函数 列字段的处理 SQ

SQL 基础--&gt; 子查询

--========================= --SQL 基础--> 子查询 --========================= 一.子查询 子查询就是位于SELECT.UPDATE.或DELETE语句中内部的查询 二.子查询的分类 单行子查询 返回零行或一行 多行子查询 返回一行或多行 多列子查询 返回多列 相关子查询 引用外部SQL语句中的一列或多列 嵌套子查询 位于其它子查询中的查询 三.子查询语法 SQL> SELECT select_list FROM table WH

SQL练习 高级子查询

• 书写多列子查询• 在 FROM 子句中使用子查询• 在SQL中使用单列子查询• 书写相关子查询• 使用 EXISTS 和 NOT EXISTS 操作符• 使用子查询更新和删除数据• 使用 WITH 子句 --多列子查询(不成对比较 & 成对比较)1. 查询与141号或174号员工的manager_id和department_id相同的其他员工的employee_id, manager_id, department_id [方式一]SELECT employee_id, manager_id,