1DELETE FROM table_name WHERE condition;
2
3-- Note: Be careful when deleting records in
4-- a table! Notice the WHERE clause in the DELETE
5-- statement. The WHERE clause specifies which record(s)
6-- should be deleted. If you omit the WHERE clause, all records
7-- in the table will be deleted!