--- delete 

The `delete' clause lets you delete records from an existing file.

The records to be deleted are identified by a `where' clause, or
   if this is not present, all the records for the indicated type
   are deleted.

EXAMPLE:

   Delete the employee named Owens.

	 sql> delete emp
	 sql> where name = 'Owens*'/
