Hi
I want an sql query something like this
which will round say
200.23 to 200.20
and 200.26 to 200.25
How to get this
Rgrds
Printable View
Hi
I want an sql query something like this
which will round say
200.23 to 200.20
and 200.26 to 200.25
How to get this
Rgrds
select trunc(200.23*2,1)/2 from dual