The DELETE statement supported by UnityJDBC has the following syntax:
DELETE
DELETE FROM <tbl_name> [WHERE <condition>];
An example is below:
DELETE FROM Employee WHERE salary > 100000;