码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程中新建临时表的

时间:2019-04-26 11:19:47      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:一个   primary   存储过程   roc   procedure   char   ber   exe   proc   

要写一个存储过程,如果临时表 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 只能在存储过程中写查询可以查询到 ##表示全局临时表,在存储过程外也可以查询到

 

存储过程中新建临时表的

标签:一个   primary   存储过程   roc   procedure   char   ber   exe   proc   

原文地址:https://www.cnblogs.com/privategardens/p/10772984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!