shangrilla
Programmer
Hi:
I am debugging some code that is rounding off values like 49.16 to 49.20 etc.
Doesn't make any sense but
Select ......,nvl(view1.total) as amnt
LEFT OUTER JOIN view1;
ON table1.key= view1.key;
group by table1.key into table tmpTable
nvl() was causing the problem.
I took the nvl() out and that fixed the problem. Now i just have (view1.total) as amnt. In view1 the value is 49.16 but after I do the select w/ nvl() I get 49.20
Any ideas why? Is there a function to turn rounding off?
Thanks
I am debugging some code that is rounding off values like 49.16 to 49.20 etc.
Doesn't make any sense but
Select ......,nvl(view1.total) as amnt
LEFT OUTER JOIN view1;
ON table1.key= view1.key;
group by table1.key into table tmpTable
nvl() was causing the problem.
I took the nvl() out and that fixed the problem. Now i just have (view1.total) as amnt. In view1 the value is 49.16 but after I do the select w/ nvl() I get 49.20
Any ideas why? Is there a function to turn rounding off?
Thanks