[求助]如何判断临时表是否存在?
如何判断SQL临时表是否存在?
如何判断表是否存在?
因为#a8不是在这个存储过程中创建的!
临时表只在当前的connection内能查到
你可以试试 在查询分析器里面开2个连接窗口,
windows1:
select col1= 1 into #1
select * from #1
if object_id('tempdb..#1') is not null
print 'exists'
else
print 'not exists'
会得到 exist2
这时候不drop #1, 去windows2 运行:
if object_id('tempdb..#1') is not null
print 'exists'
else
print 'not exists'
会看到 not exist
也就是说对于临时表 只有创建它的connection才能看见它