本文介绍了如何在Sql中执行存储过程后查看结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 选择 @ newAmt = isnull(sum([AdjAmount]), 0 
来自 [COM_Billwise] WITH NOLOCK
其中​​ [DocNo] = @ docno [DocSeqNo ] = @ seq [IsNewReference] = 1 [AccountID] = @ acid





上述声明的含义是什么?

解决方案

select @newAmt=isnull(sum([AdjAmount]),0)
from [COM_Billwise] WITH(NOLOCK)
where [DocNo]=@docno and [DocSeqNo]=@seq and [IsNewReference]=1 and [AccountID]=@acid



what is the meaning of above statement?

解决方案



这篇关于如何在Sql中执行存储过程后查看结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 02:22