同等のものが必要です
SELECT SUM(balance) as "total_balance" FROM users;
コハナ3で。
では、 Kohana3でテーブルのbalance
列の合計を見つける方法は?users
$total_balance = ORM::factory ( 'user' )->find ();//I want to change this string to find total_balance to be a sum of the balance column.