DELETE Command - SQL
Loosely speaking, DELETE removes some existing rows from its target table. Suppose the university decides that course C3 is to be withdrawn. Example shows how.
Example: Withdrawing course C3, using DELETE
DELETE FROM COURSE WHERE CourseId = 'C3';
Every row that satisfies the given WHERE condition is deleted; rows that do not satisfy it remain in place.