关闭 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查询的实例介绍就到这里了,希望本次的介绍能够对您有所帮助。

    上一篇返回首页 下一篇

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

    别人在看

    hiberfil.sys文件可以删除吗?了解该文件并手把手教你删除C盘的hiberfil.sys文件

    Window 10和 Windows 11哪个好?答案是:看你自己的需求

    盗版软件成公司里的“隐形炸弹”?老板们的“法务噩梦” 有救了!

    帝国CMS7.5编辑器上传图片取消宽高的三种方法

    帝国cms如何自动生成缩略图的实现方法

    Windows 12即将到来,将彻底改变人机交互

    帝国CMS 7.5忘记登陆账号密码怎么办?可以phpmyadmin中重置管理员密码

    帝国CMS 7.5 后台编辑器换行,修改回车键br换行为p标签

    Windows 11 版本与 Windows 10比较,新功能一览

    Windows 11激活产品密钥收集及专业版激活方法

    IT头条

    智能手机市场风云:iPhone领跑销量榜,华为缺席引争议

    15:43

    大数据算法和“老师傅”经验叠加 智慧化收储粮食尽显“科技范”

    15:17

    严重缩水!NVIDIA将推中国特供RTX 5090 DD:只剩24GB显存

    00:17

    无线路由大厂 TP-Link突然大裁员:补偿N+3

    02:39

    Meta 千万美金招募AI高级人才

    00:22

    技术热点

    微软已修复windows 7/windows 8.1媒体中心严重漏洞 用户可下载安

    卸载MySQL数据库,用rpm如何实现

    windows 7中使用网上银行或支付宝支付时总是打不开支付页面

    一致性哈希算法原理设计

    MySQL数字类型中的三种常用种类

    如何解决SQL Server中传入select语句in范围参数

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

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