I would like to convert a string to a number without loosing precision.
Example
select to_number('5.1') from dual
5.1
select to_number('5.10') from dual
5.1
How do i get 5.10 as the number in the second call ?
I would like to convert a string to a number without loosing precision.
Example
select to_number('5.1') from dual
5.1
select to_number('5.10') from dual
5.1
How do i get 5.10 as the number in the second call ?