歡迎大家在這裡學習SQLServer臨時表的刪除!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!
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
好了,SQLServer臨時表的刪除內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!
相關推薦:
sql server聯合體介紹