码迷,mamicode.com
首页 > 其他好文 > 详细

删除临时表

时间:2015-05-23 21:20:40      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

方法:

 1 --#local_variable代表临时表名
 2 if object_id(tempdb.[dbo].#local_variable) is not null
 3 begin
 4  drop table #local_variable
 5 end
 6  7 if object_id(tempdb..#local_variable) is not null
 8 begin
 9  drop table #local_variable
10 end

 

删除临时表

标签:

原文地址:http://www.cnblogs.com/willey/p/4524848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!