zoukankan      html  css  js  c++  java
  • sql server 2008语言基础: 集合

    --declare @t table(n int)
    --insert into @t values(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)
    --select * from @t 
    
    --返回在2008年1月有订单活动, 而在08年2月没有订单活动的客户和雇员.
    --select custid, empid from Sales.Orders where orderdate>='2008-01-01' and orderdate<'2008-02-01'
    --except
    --select custid, empid from Sales.Orders where orderdate>='2008-02-01' and orderdate<'2008-03-01'
    
    --返回在08年1月和2月都有订单活动的客户和雇员
    --select custid, empid from Sales.Orders where orderdate>='2008-01-01' and orderdate<'2008-02-01'
    --intersect
    --select custid, empid from Sales.Orders where orderdate>='2008-02-01' and orderdate<'2008-03-01'
    
    --在08年1月和2月有, 在07年没有的客户和雇员
    --(select custid, empid from Sales.Orders where orderdate>='2008-01-01' and orderdate<'2008-02-01'
    --intersect
    --select custid, empid from Sales.Orders where orderdate>='2008-02-01' and orderdate<'2008-03-01'
    --)
    --except
    --select custid, empid from Sales.Orders where orderdate>='2007-1-01' and orderdate<'2008-01-01'
    
    select country,region,city from hr.Employees
    union all
    select country,region,city from Production.Suppliers
    本人在长沙, 有工作可以加我QQ4658276
  • 相关阅读:
    三:Redis连接池、JedisPool详解、Redisi分布式
    vmware workstation14永久激活密钥分享
    人工智能二:TensorFlow环境搭建
    消息队列二:关于消息队列
    消息队列一:为什么需要消息队列(MQ)?
    java基础进阶一:String源码和String常量池
    人工智能一:Al学习路线
    Python学习二:词典基础详解
    Python学习一:序列基础详解
    什么是Hive
  • 原文地址:https://www.cnblogs.com/jianjialin/p/2442200.html
Copyright © 2011-2022 走看看