Hi,
I need to round a decimal in a sql query on Oracle 10g to the nearest even number. If the number is even, it should be returned. If the number is odd, the next even number should be returned.
This is what I want: 8.05 should return 8.06, 3.48 should return 3.48
How can I do this?
Thanks, Andrew