3
我在SP參數,並試圖使他們CONCAT字符串Concat所有參數並在Stored Proc中創建字符串?
@OBID int,
@ODID int,
@EMID int,
@TYPE varchar(20),
@LastModifiedBy int
SET @Strcat = @OBID +','+ @CursorODID +','[email protected] +','[email protected]
這是給錯誤。
Error Description: Conversion failed when converting the varchar value ','
to data type int. 1
不要忘記保持@Strcat的長度來接受所有的變量值,否則你會得到trimed結果。 – Chris 2011-03-11 06:23:09