关闭 x
IT技术网
    技 采 号
    ITJS.cn - 技术改变世界
    • 实用工具
    • 菜鸟教程
    IT采购网 中国存储网 科技号 CIO智库

    IT技术网

    IT采购网
    • 首页
    • 行业资讯
    • 系统运维
      • 操作系统
        • Windows
        • Linux
        • Mac OS
      • 数据库
        • MySQL
        • Oracle
        • SQL Server
      • 网站建设
    • 人工智能
    • 半导体芯片
    • 笔记本电脑
    • 智能手机
    • 智能汽车
    • 编程语言
    IT技术网 - ITJS.CN
    首页 » SQL Server »SQL Server实践性练习之高级SQL查询

    SQL Server实践性练习之高级SQL查询

    2011-08-12 09:30:00 出处:ITJS
    分享

    上次我们介绍了:SQL Server实践性练习之子查询实例,本文我们主要介绍一些SQL Server实践性练习的一些高级SQL查询的实例,接下来就让我们来一起了解一下这部分内容。

    --3.6.2 检索没有通过代理商a05订货的所有顾客的名字

    select cname from customers except  (select cname from customers,orders where customers.cid=orders.cid and orders.aid='a05') 

    --这时except是关键

    ---3.6.3 检索对同一产品至少订购了两次的所有顾客的名字

    select cname from customers where cid in  (select cid from orders group by cid,pid having count(pid)>=2) 

    --答案:

    select distinct cname from (select o.cid as spcid from orders o,orders x where o.cid=x.cid  and o.pid=x.pid and o.ordno<> x.ordno)y, customers c where y.spcid=c.cid; 

    --3.6.4 检索至少订购了一件价格低于¥0.50 的商品的所有顾客的姓名

    --答案:我没做出来,下面这种方法运行没通过

    select distinct cname from (orders join products using(pid)) join customers using(cid) where price<0.50

    --法2:将3个表直接连接起来就可以了

    select distinct cname from (orders o join products p on o.pid=p.pid) join customers c on o.cid=c.cid where p.price<0.5

    --3.7.1 求出所有订货交易的总金额

    select sum(dollars) as totaldollars from orders;

    --3.7.2 求出产品p03的订购总量

    select pid,count(pid) as 订购总量 from orders where pid='p03' group by pid --错误的,没理解题意

    --答案:

    select sum(qty) as total from orders where pid='p03'

    --3.7.3 求出顾客总数的查询

    select count(*) as 顾客总数 from customers

    --3.7.4 求出有顾客居住的城市的数目

    select count(distinct city) as 有顾客居住的城市数目 from customers

    --3.7.5 列出折扣值小于最大折扣值的所有顾客的cid值 

    select cid,cname,discnt from customers where discnt< (select max(discnt) from customers) 

    --实际上那条空值的记录没有选进来

    --3.7.6 找出至少被两个顾客订购的所有产品(可以推广到多于两个顾客的情况)

    select pid from orders group by pid having count(cid)>=2

    --我的思路是 select pid from orders

    --select pid,count(cid) as 产品被几个顾客订购 from orders group by pid having count(cid)>=2

    --答案如下:

    select p.pid from products p where 2<=(select count(distinct cid) from orders where pid=p.pid)

    --3.7.7

    insert into customers (cid,cname,city)

    values ('c009','Windix','Dallas');

    select * from customers where discnt<=10 or discnt>10

    --显然,没有查出所有记录

    --使用特殊谓词is null

    select * from customers where discnt is null or discnt<=10 or discnt>10

    --3.8 SQL中行的分组

    --3.8.1 创建一个计算每样产品被每个代理商订购的总量的查询

    select aid,pid,sum(qty) as 每个代理商订购的总量 from orders group by aid,pid

    3、执行效率的分析

    --题4:找出订购了产品p05的顾客的名字

    select cname from customers where cid in (select cid from orders where pid='p05')

    --答案用最直接的SQL语句来解决该查询问题

    select distinct cname from customers,orders where customers.cid = orders.cid and orders.pid='p05';

    --用连接也能达到相同的效果,重要的是拆解题目的意思

    select distinct cname from customers inner join orders on customers.cid = orders.cid and orders.pid='p05';

    --那么我们来看一下三种情况的执行效率

    SET ANSI_NULLS ON  GO  SET QUOTED_IDENTIFIER ON  GO  -- =============================================  -- Author:<Author,,Name> -- Create date: <Create Date,,> -- Description:<Description,,> -- =============================================  alter PROCEDURE a  @pid varchar(10)  AS  BEGIN  --select cname from customers where cid in (select cid from orders where pid=@pid) 16ms  --select distinct cname from customers,orders where customers.cid = orders.cid and orders.pid=@pid; 3ms  --select distinct cname from customers inner join orders on customers.cid = orders.cid and orders.pid=@pid; 3ms  END  GO  DBCC FREEPROCCACHE --清除缓存,以免下次计算时间  declare @begin datetime  declare @End datetime  set @begin=getdate()  exec a 'p05'  set @End=getdate()  select datediff(ms,@begin,@End) as 执行时间(毫秒) 

    --由此可见,一般情况下这种题目能直接写的就直接用连接的方法,用in的效率极低。

    关于SQL Server数据库实践性练习之高级SQL查询的实例介绍就到这里了,希望本次的介绍能够对您有所帮助。

    上一篇返回首页 下一篇

    声明: 此文观点不代表本站立场;转载务必保留本文链接;版权疑问请联系我们。

    别人在看

    电脑屏幕不小心竖起来了?别慌,快捷键搞定

    Destoon 模板存放规则及语法参考

    Destoon系统常量与变量

    Destoon系统目录文件结构说明

    Destoon 系统安装指南

    Destoon会员公司主页模板风格添加方法

    Destoon 二次开发入门

    Microsoft 将于 2026 年 10 月终止对 Windows 11 SE 的支持

    Windows 11 存储感知如何设置?了解Windows 11 存储感知开启的好处

    Windows 11 24H2 更新灾难:系统升级了,SSD固态盘不见了...

    IT头条

    Synology 更新 ActiveProtect Manager 1.1 以增强企业网络弹性和合规性

    00:43

    新的 Rubrik Agent Cloud 加速了可信的企业 AI 代理部署

    00:34

    宇树科技 G1人形机器人,拉动一辆重达1.4吨的汽车

    00:21

    Cloudera 调查发现,96% 的企业已将 AI 集成到核心业务流程中,这表明 AI 已从竞争优势转变为强制性实践

    02:05

    投资者反对马斯克 1 万亿美元薪酬方案,要求重组特斯拉董事会

    01:18

    技术热点

    大型网站的 HTTPS 实践(三):基于协议和配置的优化

    ubuntu下右键菜单添加新建word、excel文档等快捷方式

    Sublime Text 简明教程

    用户定义SQL Server函数的描述

    怎么在windows 7开始菜单中添加下载选项?

    SQL Server 2016将有哪些功能改进?

      友情链接:
    • IT采购网
    • 科技号
    • 中国存储网
    • 存储网
    • 半导体联盟
    • 医疗软件网
    • 软件中国
    • ITbrand
    • 采购中国
    • CIO智库
    • 考研题库
    • 法务网
    • AI工具网
    • 电子芯片网
    • 安全库
    • 隐私保护
    • 版权申明
    • 联系我们
    IT技术网 版权所有 © 2020-2025,京ICP备14047533号-20,Power by OK设计网

    在上方输入关键词后,回车键 开始搜索。Esc键 取消该搜索窗口。