Difference between revisions of "Oracle:DELETE"

From mi-linux
Jump to navigationJump to search
Line 12: Line 12:
  
 
Where:
 
Where:
FROM TableName Specifies the table in which records are deleted from.
+
*FROM TableName Specifies the table in which records are deleted from.
WHERE FilterCondition1 [AND | OR FilterCondition2 ...] 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.  
+
*WHERE FilterCondition1 [AND | OR FilterCondition2 ...] 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.
 
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:
 
Our new employee KING has decided to leave, to remove the record from the EMP table type:
DELETE FROM EMP  
+
DELETE FROM EMP  
WHERE ENAME = 'KING'  
+
WHERE ENAME = 'KING'  
AND EMPNO = 7945;
+
AND EMPNO = 7945;
COMMIT;  
+
COMMIT;  
 Why do we need to specify a number as well as the name when deleting the record?
+
 
+
== Exercise 4.2 ==
  
 What command verifies the record has been deleted?
+
4.1 Why do we need to specify a number as well as the name when deleting the record?
 
 
 +
4.2 Could the WHERE statement be shortened?
  
 +
4.3 What command verifies the record has been deleted?
 
 
 +
The system should respond with the message:
  
The system should respond with the message:
+
<pre style="color: blue">
 
- no rows selected
 
- no rows selected
 +
</pre>
 +
 +
 +
== Next Step ==
 +
 +
[[Oracle:UPDATE|Updating the database]].

Revision as of 17:57, 22 February 2016

Main Page >> Oracle and SQL >> Workbook >> 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 ...] 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 4.2

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

4.2 Could the WHERE statement be shortened?

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.