We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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'