Remove records from a table
DELETE FROM [database-name .] table-name [WHERE expr]
The DELETE command removes records (i.e., rows) from a table. The command keywords are followed by the database name (which is optional) and the name of the table from which records are to be removed (which is mandatory).