Is there a way to round up a value to the next integer?
For example 2.1 needs to be 3 and 4.9 need to be 5.
SELECT CEILING(2.1) AS CeilsTo3, CEILING(4.9) AS CeilsTo5|||Thanks.
No comments:
Post a Comment