Example 5.21.4 To delete the rows of the table ASSIGN that correspond to course taught by the instructor whose employee number is ’234’, we write:
delete from ASSIGN where empno = ’234’;
The directive:
delete from GRADES where grade is null;
eliminates the rows whose grade component is null.