vote up 0 vote down star

I have the following values being returned in a column.. 0.250000 and 13.000000. I'd like to round the 0.250000 up to 1 and leave the 13 as is. Any easy way to do this since they both fall within the same column?

flag

80% accept rate
What would 13.01 be rounded to? – cLFlaVA Dec 15 '08 at 18:51

3 Answers

vote up 2 vote down check

Your DBMS probably has a CEILING function. Try that.

link|flag
Boourns! You fast typer. I'll vote you up if you vote me up ;) – Kieveli Dec 15 '08 at 18:53
Sounds like a deal :) – Dave Dec 15 '08 at 18:54
vote up 2 vote down

The ceiling function will work well because you want to round to the nearest whole number. For more methods on rounding with SQL Server....

SQL Server Rounding Methods

link|flag
G M - the "nearest whole number" isn't always the next whole number in the sequence. Sometimes a floor() is necessary, depending on the requirements that were evidently left out from the original post. – cLFlaVA Dec 15 '08 at 18:55
cLFlaVA, I agree with you. In this particular case, this really isn't rounding, it's a form of truncating. I provided the link for rounding methods in case others stumble across this with an actual rounding question. – G Mastros Dec 15 '08 at 19:04
But yes, based on the limited information provided, ceiling would be fine. – cLFlaVA Dec 15 '08 at 19:13
vote up 1 vote down

select CEILING( columnname ) from tablename

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.