Account
Categories

DELETE Command


When you want to delete the data in a specific table, type DELETE FROM table_name WHERE condition; It will delete the matching data from the table.

Syntax:

  DELETE FROM table_name
  WHERE condition;