zoukankan      html  css  js  c++  java
  • sql server 2008语言基础: 子查询习题

    独立子查询

    独立标量子查询

    image

    相关子查询

    image

    not in () 的null值处理.

    --返回由拥有订单数目最多的客户下过的所有订单. 注意, 多个客户可能下过的订单数目是一样的
    --因此用到了with ties子句
    --select o.custid, o.orderid, o.orderdate, o.empid from Sales.Orders o where custid in
    --(
    --    select top 1 with ties custid from Sales.Orders group by custid order by COUNT(*) desc
    --)
    
    --返回'2008-05-01'之后就没有处理过订单的员工
    --select * from HR.Employees e
    --where not exists(select * from Sales.Orders o where orderdate>='2008-05-01' and o.empid=e.empid)
    
    --返回在客户表中出现过, 但是没有在员工表中出现过的国家
    --select distinct country from Sales.Customers where country not in 
    --(select country from hr.Employees where country is not null)
    
    --为每个客户返回在他参加活动的最后一天下过的所有订单.
    --select * from Sales.Orders o inner join 
    --(
    --    select max(orderdate) dt, custid from Sales.Orders group by custid
    --) t on o.custid=t.custid and o.orderdate=t.dt
    
    --返回2007年下过订单, 但是08年没有下过订单的客户
    --select * from Sales.Orders o where YEAR(orderdate)=2007
    --and not exists(select custid from Sales.Orders o2 where o.custid=o2.custid and YEAR(orderdate)=2008)
    
    --返回订购了第12号产品的客户.
    --select distinct c.custid,companyname from Sales.Orders o inner join Sales.OrderDetails od on o.orderid=od.orderid
    --inner join Sales.Customers c on o.custid=c.custid where od.productid=12
    
    --计算每个客户在每个月的连续总订货量
    select c.custid,c.ordermonth,c.qty,
    (select SUM(qty) from Sales.CustOrders co2 where co2.ordermonth<=c.ordermonth
        and co2.custid=c.custid
    ) from Sales.CustOrders c order by custid
    本人在长沙, 有工作可以加我QQ4658276
  • 相关阅读:
    阿里云oss怎么上传文件夹
    HTTP文件上传服务器-支持超大文件HTTP断点续传的实现办法
    让富文本编辑器支持复制doc中多张图片直接粘贴上传
    CSDN-markdown 文字样式设置(字体, 大小, 颜色, 高亮底色)
    网络编程基础知识点
    inet_addr 和inet_ntoa函数作用
    sockaddr和sockaddr_in的区别
    简析TCP的三次握手与四次分手
    TCP三次握手和四次挥手原理分析
    htons(), ntohl(), ntohs(),htons() 函数功能
  • 原文地址:https://www.cnblogs.com/jianjialin/p/2439154.html
Copyright © 2011-2022 走看看