--- sum

The `sum' aggregate function computes the total value of an expression
  composed of constants and data base fields connected by the standard
  arithmetic operators: =, -, *, /.

Aggregate functions are only valid when used in `select' or `having'
   clauses.


EXAMPLE: 

	  sql> select sum(salary)

          sql> select job, sum((salary*12) + commission)

