zoukankan      html  css  js  c++  java
  • T-SQL高级查询语句(父子查询)

     1  T-SQL高级查询语句
     2 
     3 高级查询
     4 
     5 1.连接查询,对结果集列的扩展
     6 select * from info
     7 
     8 select * from info,nation #形成笛卡尔积
     9 select * from info,nation where info.nation=nation.code
    10 select info.code,info.name,sex,nation.name,birthday from info,nation where info.nation=nation.code
    11 
    12 select * from info join nation on info.nation=nation.code
    13 
    14 2.联合查询,对结果集行的扩展
    15 select code,name from info
    16 union
    17 select code,name from nation

     1 3.子查询
     2 
     3 父查询:外层查询
     4 子查询:里层查询
     5 
     6 子查询的结果做为父查询的条件
     7 
     8 (1)无关子查询
     9 子查询在执行的时候和父查询没有关系,子查询可以单独执行
    10 
    11 1.查询民族为‘汉族’的所有人员信息
    12 父查询:select * from info where nation=()
    13 子查询:select code from nation where name='汉族'
    14 
    15 select * from info where nation=(select code from nation where name='汉族')

     1 2.查询系列名为‘宝马5系’的所有汽车信息 2 select * from car where brand=(select brand_code from brand where brand_name='宝马5系') 

     

    1 (2)相关子查询
    2 子查询在执行的时候和父查询有关系,子查询不可以单独执行
    3 
    4 1.查询汽车表中油耗小于该系列平均油耗的所有汽车信息
    5 父查询:select * from car where oil<(该系列平均油耗)
    6 子查询:select avg(oil) from car where brand=该系列
    7 
    8 select * from car as a where oil<(select avg(oil) from car as b where b.brand=a.brand)

  • 相关阅读:
    c#驱动操作mongodb辅助类MongoDBHelper
    c#多线程lock无效
    利用Aspose.Words将html转成pdf和将html转成word
    前后端值映射的问题
    本机部署流程详解
    Git 安装配置手册
    js对象数组(JSON) 根据某个共同字段 分组
    jquery中的$.fn的用法
    JSON.parse()与JSON.stringify()的区别
    添加编辑 时 数据不可重复验证
  • 原文地址:https://www.cnblogs.com/aqxss/p/6207299.html
Copyright © 2011-2022 走看看