2021/07/06

[SQL]如何用DROP來刪除暫存表? How to drop temp tables in SQL Server

如何在 Blogger 文章中顯示程式碼區塊?

How to drop temp tables in SQL Server

暫存表很多地方都像一張正常的資料表

有個不同的地方是它會放在一個temp/裏頭

所以可以這麼寫去DROP它

IF OBJECT_ID(N'tempdb..#Table') IS NOT NULL 
	DROP TABLE #Table;

沒有留言:

張貼留言