存储过程中新建临时表的
Posted privategardens
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程中新建临时表的相关的知识,希望对你有一定的参考价值。
要写一个存储过程,如果临时表 test 不存在 ,新建临时表,如果存在不新建
alter procedure test
as
if object_id(‘tempdb..#test‘) is null
begin
print ‘不存在‘
create table #test (
number int not null primary key,
message varchar(50) not null
)
end
else
print ‘存在‘
exec test
select * from #test
上面的SQL语句,调用存储过程之后查询临时表会报错
不存在
消息 2714,级别 16,状态 6,过程 test,第 6 行
数据库中已存在名为 ‘##test‘ 的对象。
后来将 #test 改为 ##test 便可以了
猜想可能是在存储过程中创建的 #test 只能在存储过程中写查询可以查询到 ##表示全局临时表,在存储过程外也可以查询到
以上是关于存储过程中新建临时表的的主要内容,如果未能解决你的问题,请参考以下文章
oracle 怎么在存储过程中创建一个临时表,在里面插入数据,再查找这个临时表的所有数据,最后drop这个表。