分类

链接

2012 年 8 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > SQL Server > 正文
共享办公室出租
变量表与临时表的效率分析
SQL Server 暂无评论 阅读(2,310)
昨日一朋友发来一段sql的存储过程(如下),让我看看能不能优化一下。
insert @T1
select g_no,co_no,si_no,str_no,sum(ind_qty) as qty
from instock_detail where  in_id = @id  group by g_no,co_no,si_no,str_no--?unitstock  -->保存在变量表
insert @T2
select a.*
from  unitstock a,@T1 b
where a.g_no =b.g_no  and a.co_no =b.co_no
and a.si_no =b.si_no and a.str_no=b.str_nodelete unitstock
from @T1 a
where unitstock.g_no=a.g_no  and unitstock.co_no =a.co_no
and unitstock.si_no=a.si_no and unitstock.str_no=a.str_no

insert unitstock
select g_no,co_no,si_no,str_no,sum(qty) as qty  from
( select  * from @T1   union all select * from @T2
) AA
group by g_no,co_no,si_no,str_no

今日有空,作了一下变量表临时表插入数据的性能分析。
1。变量表:

declare @t table
(
id nvarchar(50),
supno nvarchar(50),
eta datetime
)
insert  @t
select top 10000 id,supno,eta from 表

这一句执行sql需时间:16806ms

2。临时表

create table #t
(
id nvarchar(50),
supno nvarchar(50),
eta datetime
)
insert #t
select top 10000 id,supno,eta
from 表

这一句执行sql需时间:76ms

3。不创建临时表,直接插入到临时表

select top 10000 id,supno,eta
into #t
from 表

这一句执行sql需时间:30ms

通过以上的分析,可以非常清晰的看出那个优,那个劣了。

以上只是简单的分析了一下。所以在存储过程中尽量合作临时表来存储临时数据,不要使用变量表。

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:变量表与临时表的效率分析 | Bruce's Blog

发表评论

留言无头像?