sql server临时表删除方法

发布时间:2020-05-10编辑:脚本学堂
本文介绍了sql server临时表的删除方法,分析了错误与正确的删除临时表的方法,有关sql server临时表的二个例子。

sql server临时表怎么删除?

1、错误的删除操作:
 

复制代码 代码示例:
--错误的临时表删除操作,因为所在数据库不同
IF EXISTS (SELECT * FROM sysobjects WHERE object_id = OBJECT_ID(N'[dbo].[#tempTable]') AND type in (N'U'))
Begin
DROP TABLE [dbo].[tempTable]
End
--错误的临时表删除操作,因为临时表名已变
if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'[#temptable]'))
Begin
drop table #temptable
End

2、正确的删除方式:
 

复制代码 代码示例:
--正确的临时表删除操作
if object_id('tempdb#tempTable') is not null Begin
drop table #tempTable
End