Operation Details
Description: Counts the number of accounts which match the specified status and bank branch and provides this value as a result.
Sterotype: ns
SQL
SELECT
  COUNT(*)
INTO
  :numberOfAccounts 
FROM
  BankAccount 
WHERE BankAccount.bankBranchID = :bankBranchID 
  AND BankAccount.bankAccountStatus = :bankAccountStatus