Creates an abstracted DELETE query from the specified query
Delete deleteMountainsWithUnknownHeight = table("mountain").qb .where("height", ComparisonOperator.isNull) .delete_() ; // DELETE FROM "mountain" WHERE "height" IS NULL
See Implementation
Creates an abstracted DELETE query from the specified query