Oracle
DELETE Statement
Figo Kim
2006. 9. 2. 13:05
You can remove existing rows from a table by using the DELETE statement:
DELETE [FROM] table
[WHERE condition];
If no rows are deleted, the message "0 rows deleted" is returned.
DELETE FROM departments
WHERE department_name = 'Finance';