The SELECT command can be used to select certain aspects of a table.
SELECT
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.