扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
--下面以临时表#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
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流