Tagged Questions

2
votes
3answers
86 views

Is there a way to floor/ceil based on whether the value is over 0.5 or under?

I am trying to round my values so that if it's 0.5 or greater, it becomes 1, else it becomes 0. For example: 3.7 -> 4; 1.3 -> 1; 2.5 -> 3; ... Any ideas?
2
votes
3answers
1k views

Fractional Part of the number question

What is a good algorithm to determine the necessary fraction needed to add/sub to the number in order to round it to the nearest integer without using the inbuilt ceiling or floor funcitons? Edit: ...
0
votes
2answers
291 views

decimal values in pl/sql

How to display a value as follows in oracle: 99.99 as 99.9900, 99.9 as 99.9000, 9.99 as 9.9900, 99 as 99.0000 All cases should be satisfied.. Please help...