sql数据库中已存在名为 ✀#tmp✀ 的对象怎么解决

2024-12-25 03:45:09
推荐回答(3个)
回答1:

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

回答2:

rename

回答3:

学习下