• If multiplication happened before division than these would return the same answer, but they dont.

    Declare @Salary int

    Set @Salary = 85199

    Select @Salary/100*115, @Salary/(100*115)

    Edit: please note this is not a solution to the problem, the both have wrong answers for the original problem.