分享至
環境 : SQL SERVER 2012
create proc sp_sub as select 1 id ,'' memo into #table select memo from #table go create proc sp_main as select 1 seq ,'' name into #table exec sp_sub go exec sp_main
sp_sub的#table,不要和sp_main的命名相同改一下,就好了.
這部分還有一個額外的做法就是將 #Table 變成 @table也就是宣告 Table 變數就能夠避免了
IT邦幫忙