Previous Topic: Example 1Next Topic: DROP


Example 2

Delete several rows from table NAMETBL, specifically, those for all employees in Department E1 or D2.

      DELETE FROM NAMETBL
      WHERE WORKDEPT = 'E1' OR WORKDEPT = 'D2'