I want to ROUND Decimal values in sql server like if the value is 1.1 then the result should be 2(next value). How to do it in sql server , any inbuilt method is there or i want to do manually?
EDIT:
If any value is der in Decimal place then also the result should be Next integer Value
Please Help
Don’t mean to post a simplistic answer, but have you looked at
CEILING/FLOOR?From MSDN,
CEILING“Returns the smallest integer greater than, or equal to, the specified numeric expression.”