博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

方法一: 

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

 

posted on 2015-01-16 16:41    阅读(4201)  评论(0编辑  收藏  举报