8. SQL Statements : DELETE : DELETE Example
 
Share this page                  
DELETE Example
Remove all employees who make over $35,000:
DELETE FROM employee WHERE salary > 35000;