I am running the following query in oracle 11g using Sql Developer.
SELECT remainder(25,10),remainder(35,10) FROM dual;
Exit
REMAINDER(25,10) REMAINDER(35,10)
I can use MOD () to get the desired result, but my question is why it returns +5 for one and -5 for others?
sql oracle rounding oracle11g
Rajeev
source share