首页 > 数据库技术 > 详细

[转]MSSQL 判断临时表是否存在

时间:2015-09-25 11:13:04      阅读:248      评论:0      收藏:0      [点我收藏+]

原文来自:http://www.cnblogs.com/szfhquan/p/4229150.html

方法一: 

1 if exists (select * from tempdb.dbo.sysobjects where id = object_id(N‘tempdb..#tempcitys‘) and type=‘U‘)
2    drop table #tempcitys

注意tempdb后面是两个. 不是一个的

 

方法二:

if object_id(‘tempdb..#tem‘) is not null 
begin 
print ‘exists‘ 
end 
else 
begin 
print ‘not exists‘ 
end

[转]MSSQL 判断临时表是否存在

原文:http://www.cnblogs.com/z5337/p/4837466.html

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