sql数据库中已存在名为 '#tmp' 的对象怎么解决
insertinto#tmp(id_vip)selecta.id_vipfromainnerjoinbona.id_vip=b.id_vipdeletefromawher...
insert into #tmp (id_vip)
select a.id_vip from a inner join b on a.id_vip=b.id_vip
delete from a where id_vip in (select id_vip from #tmp)
delete from b where id_vip in (select id_vip from #tmp)
在执行另的二个表时如是C表,B表时,会提示数据库中已存在名为 '#tmp' 的对象。
请问怎么解决这个问题谢谢 展开
select a.id_vip from a inner join b on a.id_vip=b.id_vip
delete from a where id_vip in (select id_vip from #tmp)
delete from b where id_vip in (select id_vip from #tmp)
在执行另的二个表时如是C表,B表时,会提示数据库中已存在名为 '#tmp' 的对象。
请问怎么解决这个问题谢谢 展开
3个回答
展开全部
if object_id('tempdb..#tempTable') is not null
Begin
drop table #tempTable
End
Begin
drop table #tempTable
End
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
rename
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
学习下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询