本文介绍了如何在变量中存储金额并执行计算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从表1中选择总和(金额)从表2中选择总和(amt)
temp-> X temp->是
如何将SUM存储到X和Y.
(Y - X)= - + Z
如果
Z(金额)是正数那么(插入/更新数据)
else
关闭连接
响应(预算金额少,不能允许更多交易);
我在一个项目中使用ASP.Net(C#)
请帮我解决这个问题
select sum(amount) from table1 select sum(amt) from table 2
temp-> X temp-> Y
how to store the SUM to X and Y .
( Y - X )= -+Z
if
Z(amount) is in positive then( insert/update of data )
else
close connection
response("Budget Amount is less , cannot allow more transaction");
I am working in a project using ASP.Net (C#)
please help me with this problem
推荐答案
select @x = sum(amount) from table1
set @z=0
set @x = select sum(isnull(amount,0)) from table1
set @y = select sum(isnull(amount,0)) from table2
set @z=@y-@x
id @z<0
begin
"Failed Result"
end
else
begin
"Success Result"
end
这篇关于如何在变量中存储金额并执行计算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!