Hello All,
I am dividing 4000 by 3 and rounding the result to 7 decimal places.
SELECT ROUND((4000/3),7) FROM DUAL;
Above query is giveing the result as 1333.3333333.
When I multiply 1333.3333333 * 3, Its giving 3999.9999999 instead of 4000.
SELECT 1333.3333333 * 3 FROM DUAL;
I need 4000 when I do Multiply.
Appreciate your help.
Thanks
MN