The DELETE statement is used to remove records or rows from the table. The DELETE statement includes the name of the table, and the WHERE clause defines the rows to be deleted.
Systax:
Systax:
DELETE [FROM] {table_name}Where, table_name is the name of the table from which a row(s) is to be deleted.
[WHERE condition]