SQL语句竟执行不了?(47分)

  • 主题发起人 主题发起人 yicheng
  • 开始时间 开始时间
Y

yicheng

Unregistered / Unconfirmed
GUEST, unregistred user!
exec sp_executesql N'update tcutSub &nbsp;set<br>&nbsp;fCutQty = @P1<br>where<br>&nbsp;fSn = @P2 and<br>&nbsp;fColor = @P3 and<br>&nbsp;fSm = @P4 and<br>&nbsp;fSize is null and<br>&nbsp;fCutQty = @P5 and<br>&nbsp;fMemo is null and<br>&nbsp;fGuid = @P6<br>', N'@P1 int,@P2 int,@P3 nvarchar(12),@P4 nvarchar(12),@P5 int,@P6 nvarchar(50)', 8, 207, N'红', N'12', 1, N'EA700862-EF88-4BFB-83AA-27999A14324B'<br><br>以上为一SQL语句,是我在SQL探测器中跟踪到的。<br>为何不能执行?<br>而<br>update tcutSub &nbsp;set fCutQty = 8 where fGuid='EA700862-EF88-4BFB-83AA-27999A14324B'<br><br>又可以执行!<br><br>为何?
 
探测器是内部格式,需要转换成为标准格式。
 
我覺得可能是上面的那個語句條件不符,也就是有條件不匹配啦
 
多人接受答案了。
 
后退
顶部