delete command - sqlloosely speaking delete


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.

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: delete command - sqlloosely speaking delete
Reference No:- TGS0180907

Expected delivery within 24 Hours