查询分析器里的怪现象
select * into #temp from authors
drop table #temp
select * into #temp from authors
drop table #temp
我删除了再添加临时表就会出错?为什么?
问题点数:50、回复次数:2Top
1 楼zqllyh(学习Stupid As Pig中...)回复于 2002-12-13 10:42:56 得分 25
不应该,您要确认DROP有没有执行!Top
2 楼N_chow(Yukon)回复于 2002-12-13 10:43:12 得分 25
你應該分成兩個批次來執行。
中間加go
select * into #temp from authors
drop table #temp
GO
select * into #temp from authors
drop table #temp
Top




