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

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

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

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

–这时except是关键

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

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

–答案:

  1. select distinct cname from (select o.cid as spcid from orders o,orders x where o.cid=x.cid  
  2. 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值 

  1. select cid,cname,discnt from customers where discnt< 
  2. (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′;

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

  1. SET ANSI_NULLS ON  
  2. GO  
  3. SET QUOTED_IDENTIFIER ON  
  4. GO  
  5. -- =============================================  
  6. -- Author:<Author,,Name> 
  7. -- Create date: <Create Date,,> 
  8. -- Description:<Description,,> 
  9. -- =============================================  
  10. alter PROCEDURE a  
  11. @pid varchar(10)  
  12. AS  
  13. BEGIN  
  14. --select cname from customers where cid in (select cid from orders where pid=@pid) 16ms  
  15. --select distinct cname from customers,orders where customers.cid = orders.cid and orders.pid=@pid; 3ms  
  16. --select distinct cname from customers inner join orders on customers.cid = orders.cid and orders.pid=@pid; 3ms  
  17. END  
  18. GO  
  19. DBCC FREEPROCCACHE --清除缓存,以免下次计算时间  
  20. declare @begin datetime  
  21. declare @End datetime  
  22. set @begin=getdate()  
  23. exec a 'p05'  
  24. set @End=getdate()  
  25. select datediff(ms,@begin,@End) as 执行时间(毫秒) 

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

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

SQL Server数据库实践性练习的相关文章:

SQL Server实践性练习之子查询实例

SQL Server实践性练习之创建库表及条件查询

【编辑推荐】

  1. SQL Server 2008数据库学习笔记
  2. SQL Server 2005数据库nolock使用详解
  3. SQL Server如何启用Ad Hoc Distributed Queries?
  4. SQL Server 2008用存储过程实现插入更新数据的实例
  5. 含有GROUP BY子句的查询中如何显示COUNT()为0的结果

文章来源网络,作者:管理,如若转载,请注明出处:https://shuyeidc.com/wp/281023.html<

(0)
管理的头像管理
上一篇2025-05-12 19:27
下一篇 2025-05-12 19:28

相关推荐

  • GEO友好的服务器标准有哪些,如何判断?

    SEO友好的服务器,核心标准是速度、稳定性、IP纯净度、安全合规以及服务商资质,缺一不可, 选择服务器不能只看配置,更要关注机房基础设施、网络质量、IP信誉以及服务商是否持牌经营,符合这些条件的服务器,才能让百度爬虫顺利抓取、用户获得良好体验,从而稳定提升排名,速度:服务器响应时间与硬件配置百度最新的核心算法中……

    2026-07-26
    0
  • 机房T3等级是什么意思?,T3机房等级标准有哪些?

    机房T3等级,代表数据中心具备并行维护能力和N+1冗余架构,可用性达到99.982%级别,是当前企业托管业务的主流选择,什么是机房T3等级?核心定义与行业标准机房T3等级源自Uptime Institute的数据中心分级标准,也对应TIA-942的Rating 3等级,这个等级的核心特征就是可并行维护——在任意……

    2026-07-26
    0
  • 服务器SLA服务协议是什么有什么用,有哪些注意事项?

    服务器SLA服务协议是服务商与用户之间关于服务可用性、性能等方面的正式承诺,它直接决定了业务稳定性和运维成本,什么是服务器SLA服务协议服务器SLA(Service Level Agreement)是服务等级协议的缩写,在IDC和云服务领域,它是一份具有法律效力的合同附件,明确服务商必须提供的服务水平基准,这份……

    2026-07-26
    0
  • 站群服务器泛站和泛目录有什么区别?,怎么选

    泛站基于多个独立域名构建独立站点,泛目录则在同一域名下通过目录结构构建内容,这直接影响SEO权重分配和资源管理,什么是泛站和泛目录泛站模式泛站模式使用多个独立域名,每个域名部署独立网站,内容互不关联,这种结构下,每个站点各自积累SEO权重,适合需要大量外链或分散风险的场景,推广不同产品时,泛站能避免单一站点被处……

    2026-07-26
    0
  • 服务器防火墙硬件和软件哪个效果更好,怎么选

    在服务器防火墙的选型中,硬件防火墙与软件防火墙并非非此即彼,而是互补关系,对于追求高安全等级与稳定性的生产环境,采用硬件防火墙做网络层隔离,配合软件防火墙做主机层加固,是当前公认效果最好的组合方案,硬件防火墙与软件防火墙的核心差异性能与资源占用硬件防火墙依托专用ASIC芯片或FPGA处理数据包,转发延迟通常在微……

    2026-07-26
    0

发表回复

您的邮箱地址不会被公开。必填项已用 * 标注