首页 > 数据库技术 > 详细

SqlServer中临时表的使用

时间:2014-07-12 14:05:49      阅读:364      评论:0      收藏:0      [点我收藏+]

 

http://www.cnblogs.com/chongzi/archive/2011/01/19/1939106.html

 

--存储过程中将多表连接结果写入到临时表中,然后通过游标查询临时表内容  
--判断临时表是否存在
IF    OBJECT_ID(tempdb..#TmpTable‘) IS NOT NULL
DROP TABLE #TmpTable

SELECT a.[a1],a.[a1],b.[b1],b.[b2]
INTO #TmpTable
FROM A a
LEFT JOIN B b ON a.a1 = b.a1

 

操作游标

DECLARE @orderId NVARCHAR(50),@customerId NVARCHAR(50),@employeeId NVARCHAR(50)
DECLARE myCursor CURSOR FOR
SELECT o.OrderID,o.CustomerID,o.EmployeeID FROM Orders AS o

OPEN myCursor
fetch next from myCursor into @orderId,@customerId,@employeeId
while @@fetch_status=0 
BEGIN

PRINT @orderId
PRINT @customerId
PRINT @employeeId
fetch next from myCursor into @orderId,@customerId,@employeeId
END
close myCursor 
deallocate myCursor

 

SqlServer中临时表的使用,布布扣,bubuko.com

SqlServer中临时表的使用

原文:http://www.cnblogs.com/gossip/p/3831985.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!