DELETE

Remove records from a table

Synopsis:



DELETE FROM [database-name .] table-name [WHERE expr]


Description:

The DELETE command is used to remove records from a table. The command is followed by the name of the table from which records are to be removed.

Without a WHERE clause, all rows of the table are removed. If a WHERE clause is supplied, only those rows that match the expression are removed.