SQL Server 临时表的删除--正确的临时表删除操作

if object_id('tempdb..#tempTable') is not null
Begin drop table #tempTable End

 

相关文章: