----------  Delete  ----------

This command deletes a set of records from the named table.

Syntax:

     delete [from] TABLE [WHERE_CLAUSE];

The WHERE clause specifies the condition(s) each record must satisfy in  order
to be deleted.

If no WHERE clause is specified all records in the table will be deleted.

If a delete constraint has been placed on the table only those records  satis-
fying the constraint will be deleted.

                               *** CAUTION ***

Be sure to specify enough conditions on attributes to limit the records delet-
ed to the ones you really want to delete.

For further information, enter:

                help where_clause;
