判断临时表是否存在,存在就删除

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断临时表是否存在,存在就删除相关的知识,希望对你有一定的参考价值。

--下面以临时表#temp为例,判断它是否存在,存在就删除它
IF OBJECT_ID('tempdb..#temp') is not null
drop table #temp



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

--方法二
if object_id('tempdb..#tem') is not null 
begin 
print 'exists' 
end 
else 
begin 
print 'not exists' 
end


以上是关于判断临时表是否存在,存在就删除的主要内容,如果未能解决你的问题,请参考以下文章

SQLServer 中的存储过程中判断临时表是否存在,存在则删除临时表

检查是否存在临时表,并在创建临时表之前删除它是否存在

sql判断临时表是不是存在

sql判断临时表是不是存在

判断表(临时表),存储过程是否存在

VB如何判断临时表某列是不是存在列