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

    IT技术网

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

    SQL点滴之with语句和子查询的性能比较

    2011-04-28 09:49:00 出处:ITJS
    分享

    之前笔者和大家分享了《使用with语句来写一个稍微复杂sql语句》,这一次笔者针对with语句和子查询做了一个性能的比较。

    在博友SingleCat的提醒下,对with语句做一些性能测试,这里使用的测试工具是SQL Server Profile。我选择了最后一个语句,因为这个语句比较复杂一点。开始的时候单独执行一次发现他们的差别不大,就差几个毫秒,后来想让他们多执行几次,连续执行10

    次看看执行的结果。下面贴出测试用的语句。

    /*with查询*/  declare @withquery varchar(5000)  declare @execcount int=0  set @withquery='with TheseEmployees as(  select empid from hr.employees where country=N''USA''),  CharacteristicFunctions as(  select custid,         case when custid in (select custid from sales.orders as o where o.empid=e.empid) then 1 else 0 end as charfun  from sales.customers as c cross join TheseEmployees as e)  select custid from CharacteristicFunctions group by custid having min(charfun)=1 order by custid  '  while @execcount<10  begin exec (@withquery);  set @execcount=@execcount+1  end  /*子查询*/  declare @subquery varchar(5000)  declare @execcount int=0  set @subquery='select custid from Sales.Orders where empid in (select empid from HR.Employees where country = N''USA'') group by custid  having count(distinct empid)=(select count(*) from HR.Employees where country = N''USA'');  '  while @execcount<10  begin exec (@subquery);  set @execcount=@execcount+1  end 

    从SQL Server Profile中截图如下

    从图中可以看到子查询语句的执行时间要少于with语句,我觉得主要是with查询中有一个cross join做了笛卡尔积的关系,于是又实验了上面的那个简单一点的,下面是测试语句。

    /*with语句*/  declare @withquery varchar(5000)  declare @execcount int=0  set @withquery='with c(orderyear,custid) as(  select YEAR(orderdate),custid from sales.orders)  select orderyear,COUNT(distinct(custid)) numCusts from c group by c.orderyear'   while @execcount<100  begin exec (@withquery);  set @execcount=@execcount+1  end  /*子查询*/  declare @subquery varchar(5000)  declare @execcount int=0  set @subquery='select orderyear,COUNT(distinct(custid)) numCusts  from (select YEAR(orderdate),custid from sales.orders) as D(orderyear,custid)  group by orderyear'  while @execcount<100  begin exec (@subquery);  set @execcount=@execcount+1  end 

    这次做10次查询还是没有多大的差距,with语句用10个duration,子查询用了11个,有时候还会翻过来。于是把执行次数改成100,这次还是子查询使用的时间要少,截图如下

    最终结论,子查询好比with语句效率高。

    原文链接:http://www.cnblogs.com/tylerdonet/archive/2011/04/18/2020225.html

    上一篇返回首页 下一篇

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

    别人在看

    正版 Windows 11产品密钥怎么查找/查看?

    还有3个月,微软将停止 Windows 10 的更新

    Windows 10 终止支持后,企业为何要立即升级?

    Windows 10 将于 2025年10 月终止技术支持,建议迁移到 Windows 11

    Windows 12 发布推迟,微软正全力筹备Windows 11 25H2更新

    Linux 退出 mail的命令是什么

    Linux 提醒 No space left on device,但我的空间看起来还有不少空余呢

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

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

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

    IT头条

    公安部:我国在售汽车搭载的“智驾”系统都不具备“自动驾驶”功能

    02:03

    液冷服务器概念股走强,博汇、润泽等液冷概念股票大涨

    01:17

    亚太地区的 AI 驱动型医疗保健:2025 年及以后的下一步是什么?

    16:30

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

    15:43

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

    15:17

    技术热点

    SQL汉字转换为拼音的函数

    windows 7系统无法运行Photoshop CS3的解决方法

    巧用MySQL加密函数对Web网站敏感数据进行保护

    MySQL基础知识简介

    Windows7和WinXP下如何实现不输密码自动登录系统的设置方法介绍

    windows 7系统ip地址冲突怎么办?windows 7系统IP地址冲突问题的

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

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