同一个存储过程中,不能多次select into 到同一

系统 1607 0

表记录的插入方式有两种。其一,先create table 再 insert into from ...。其二, 直接 select into。

第一种方式,由于要记录日志,因此IO消耗更多,duration 更长。一般来说能用 select into 的,就尽量不要用 insert into的方式。

有时,存储过程中会需要,根据不同的条件,从不同的表中获取数据放入一个临时表。看起来,这样就需要在不同的分支语句中,写多个对同一张的 select into 语句。

例如:

    if (@b=1)

    begin

         select  a.id, a.name, b.price

          into #temp

          from A inner join B on (a.id=b.id)

    end else if (@b=2)

    begin

 

         select  d.id, d.name, c.price

          into #temp

          from D inner join C on (d.id=c.id)

    end 

但创建存储过程时会报错,说 #temp 表已经存在。

怎么解决呢?

方法一:用第一种方式,问题是性能差;

方法二:偷懒一些,但性能更好的方法

 

         select  a.id, a.name, b.price

          into #tempA

          from A inner join B on (@b=1 and a.id=b.id)

         where @b=1

 

 

 

         select  d.id, d.name, c.price

          into #tempB

          from D inner join C on (@b=2 and d.id=c.id)

          where @b=2


         select *

         into #temp

         from ( select * from #tempA union all select * from #tempB )

方法三:用动态sql的办法,把所有的语句都拼接好。好处是性能比方法二好,但缺点也很明显,可读性不强;

方法四:其实,不同的功能,还是最好分成不同的存储过程,优化,维护都更简单。


不知道有没有更好的方式?



  

同一个存储过程中,不能多次select into 到同一张表的问题


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论