Use of decimal in NVL function
I would like to ask about the NVL function. Is there any difference between these?
Which is better:
select nvl(col1,0) from ...;
or
select nvl(col1,0.0) from ...;
if col1's type is number.
I would like to know if there is any difference between them.