The DELETE statement deletes rows from PROCLIB.NEWPAY that satisfy the
WHERE expression. The IS condition specifies rows that contain missing values
in the Jobcode or Salary column.
delete
from proclib.newpay
where jobcode is missing or salary is missing;