私の問題についてあなたの専門知識が必要です
SELECT
(begBal) AS 'Beg. Balance',
(deposit) AS 'Deposit',
(withdrawal) AS 'Withdrawn',
(begBal+deposit-withdrawal) AS Balance
FROM savingsTable;
結果:
| Beg. Balance | Deposit | Withdrawal | Balance |
| 2000 | 1500 | 1100 | 2400 |
私たちの先生は次のような結果を望んでいます:
| Beg. Balance | Deposit | Withdrawal | Balance |
| 2,000.00 | 1,500.00 | 1,100.00 | 2,400.00 |
あなたの答えに少し説明を含めてください。事前にどうもありがとうございました。