1、錯(cuò)誤的刪除操作:
--錯(cuò)誤的臨時(shí)表刪除操作,因?yàn)樗跀?shù)據(jù)庫(kù)不同
IF EXISTS (SELECT * FROM sysobjects WHERE object_id = OBJECT_ID(N'[dbo].[#tempTable]') AND type in (N'U'))
Begin
DROP TABLE [dbo].[tempTable]
End
--錯(cuò)誤的臨時(shí)表刪除操作,因?yàn)榕R時(shí)表名已變
if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'[#temptable]'))
Begin
drop table #temptable
End
2、正確的刪除方式:
--正確的臨時(shí)表刪除操作
if object_id('tempdb#tempTable') is not null Begin
drop table #tempTable
End
更多信息請(qǐng)查看IT技術(shù)專欄