How to Delete Data from SQL
Need to remove data from a database?
Use DELETE.

Common examples:
DELETEremoves rowsWHEREspecifies which rows- No
WHEREmeans all rows - Transactions help protect changes
ROLLBACKhelps when something goes wrong
Before executing a DELETE, make sure your WHERE condition selects the rows you want to remove.