The DELETE command can be used to delete certain rows of a table.
DELETE
DELETE FROM [table] [WHERE condition(s)]
Delete all rows
DELETE FROM table
Delete selected rows
DELETE FROM table WHERE column = 'value'
There was an error while loading. Please reload this page.