I need the equivalent of
SELECT SUM(balance) as "total_balance" FROM users;
in Kohana3.
So, how to find a sum of the balance column of users table in Kohana3?
$total_balance = ORM::factory ( 'user' )->find ();//I want to change this string to find total_balance to be a sum of the balance column.