Previous Topic: Define a New Table to the ProductNext Topic: Delete a Table


Delete Table Rows

To delete rows from a table, use the DELETE FROM statement.

For example, to delete all rows from the table APPLICATIONS when the status is DOWN, issue this command:

ADDRESS SQL
  "DELETE FROM APPLICATIONS WHERE STATUS = 'DOWN'"