Delete Statement


SYNTAX:
delete_stmt = DELETE assignment_receiver { qualifier } ?;? .
The Delete statement is used to delete an instance in the target model or in the mapping process temporary storage.
 
Example:
DELETE t.Female;
DELETE t.attr1.attr2.person;