Examples of CEILING Function :
Example 1 : Use of CEILING function in select clause
SELECT CEILING(560.550)
Output
561
Above example returns smallest integer number greater than the specified positive number.
Example 2 : Use of CEILING function in select clause
Output
Above example returns smallest integer number greater than the specified negative number.