MSSQL 判断临时表是否存在

方法一:

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

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

方法二:

if object_id('tempdb..#tem') is not null
begin
print 'exists'
end
else
begin
print 'not exists'
end
上一篇:HYSBZ 1415 - 聪聪和可可(概率DP)


下一篇:Oracle开发常用函数 max 最大数 自动加 1