Delete

DELETE Allows us to delete data from a table based on the filters specified in the WHERE clause.

DELETE FROM My_Table
WHERE <Filters>

*DELETE is fully logged and can be an expensive operation if deleting a lot of data


Backlinks