SQL DELETE Statement The SQL DELETE Statement The DELETE statement is used to delete existing records in a table. DELETE Syntax DELETE FROM table_nameWHERE condition; Note: Be careful when deleting records in a table! Notice the WHERE clause in the D…