Difference between revisions of "Oracle:DELETE"

From mi-linux
Jump to navigationJump to search
(Created page with "Main Page >> Oracle and SQL >> Workbook >> Deleting records == DELETE Command == The format of the SQL - DELETE statement is: <nowiki> DE...")
 
Line 5: Line 5:
 
The format of the SQL - DELETE statement is:
 
The format of the SQL - DELETE statement is:
  
<nowiki>
+
<code>
DELETE FROM TableName
+
:DELETE FROM TableName
      [WHERE FilterCondition1  
+
::[WHERE FilterCondition1  
      [AND | OR FilterCondition2 ...]]
+
::[AND | OR FilterCondition2 ...]]
</nowiki>
+
</code>
  
 
Where:
 
Where:

Revision as of 17:55, 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;  Why do we need to specify a number as well as the name when deleting the record?


 What command verifies the record has been deleted?



The system should respond with the message: - no rows selected