iT邦幫忙

0

[SQL] debug - when SP_main call SP_sub

  • 分享至 

  • xImage
  •  

環境 : 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 

https://ithelp.ithome.com.tw/upload/images/20220829/20106764sDLCAkKdVd.png

處理方式

sp_sub的#table,不要和sp_main的命名相同
改一下,就好了.


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
OuJiaHao
iT邦新手 4 級 ‧ 2022-09-07 10:14:22

這部分還有一個額外的做法
就是將 #Table 變成 @table
也就是宣告 Table 變數就能夠避免了

我要留言

立即登入留言