sql 银行账户查询余额

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 银行账户查询余额相关的知识,希望对你有一定的参考价值。


Bank Account Inquiry Custom Formula to Get Accounts for the Ajera 7 Dashboard Cash Balance [ New ]
Options

‎06-05-2015 01:44 PM

Bank Account Inquiry Custom Formula to Get Accounts for the Dashboard Cash Balance

 

1. Bank Account Inquiry: Get Accounts for the Dashboard Cash Balance

 

SELECT  baBalance =

(SELECT ISNULL(SUM(beAmount), 0)

FROM bankentry

WHERE beBankAccount = BA.baKey)

+ (CASE WHEN dbo.AxBankAccountGetFirstStatementBalance(BA.baKey) IS NULL THEN 0

 ELSE dbo.AxBankAccountGetFirstStatementBalance(BA.baKey) END   )

FROM axBankAccount AS BA

WHERE baBankAccountType = 0

AND baKey = [Bank Key]

 

To Use these Custom Formulas

Copy the desired Formula into the definition of your Inquiry column.

以上是关于sql 银行账户查询余额的主要内容,如果未能解决你的问题,请参考以下文章

EXCEL函数计算不同银行账户余额

简单的银行账户程序无法正确存储余额

如何查询工商银行账户的CNAPS CODE?

JAVA编写模拟ATM机进行帐户余额查询 实现存款和取款业务(使用带参数的方法)

微信关注的中国工商银行。查询不了余额一点进去就空白。是啥情况?

首先定义一个描述银行账户的Account类,包括成员变 量“账号”和“存款余额”,成员方法有“存款”“取款”和“余额查询”。其次, 编写一个主类,在主类中测试Account类的功能。