--- update 

The `update' clause lets you modify fields in existing records.

Updates can be specified with literal values, expressions or query
   statements.  See the help documentation for the `set' clause.

EXAMPLE:

   Change Owens' salary to $1000.

	  sql> update emp
	  sql> set salary = 1000
	  sql> where name = 'Owens*'/
