I am trying to find a number's value after zero. x - floor(x) can do the job, but it seems to create a precision issue. For example, 2000.06 - floor(2000.06) == 0.06 will return FALSE in my case. Are there other functions that can perform this task without causing any precision issues?