Oracle:DELETE

From mi-linux
Jump to navigationJump to search

Main Page >> Oracle and SQL >> Workbook >> DML >> Deleting records

DELETE Command

The format of the SQL - DELETE statement is:

DELETE FROM TableName
[WHERE FilterCondition1
[AND | OR FilterCondition2 ...]]

Where:

  • FROM TableName Specifies the table in which records are deleted from.
  • WHERE FilterCondition1 [AND | OR FilterCondition2 ...] The FilterCondition specifies the criteria that records must meet to be deleted.

You can include as many filter conditions as you like, connecting them with the AND or OR operator.

You can also use the NOT operator to reverse the value of a logical expression, or use IS NULL to check for an empty field.

Our new employee KING has decided to leave, to remove the record from the EMP table type:

DELETE FROM EMP 
   WHERE ENAME = 'KING' 
   AND EMPNO = 7945;
COMMIT; 

Exercise 3.4

3.4.1 Why do we need to specify a number as well as the name when deleting the record?

3.4.2 Could the WHERE statement be shortened?

3.4.3 What command verifies the record has been deleted?

The system should respond with the message:

  - no rows selected


Next Step

Updating the database.