How could I perform a series of calculations directly in the sql query, how does SUM()
that sum does it have some way of adding one column to another and decreasing another?
$sql02 = mysql_query("SELECT * , SUM(valor) as tt FROM finan ");
$dados02 = mysql_fetch_array($sql02);
$fev_c = $dados02[$pg];
$fev_v = $dados02[$pg];
$tot = $dados02['tt'];
$juros = $dados02['multa'];
$multa = $dados02['juros'];
$desconto = $dados02['desconto'];
// abaixo é o calculo que atualmente fasso é e isso que queria fazer direto na consulta
$fev2 = $tot+$juros+$multa-$desconto;
My question is how would this calculation be done in the query
SELECT *, SUM(valor) as tt FROM finan;