Numeric Math Functions Oracle PLSQL

SQL> --CEIL(x): Returns the smallest integer greater than or equal to x.
SQL>
SQL> select CEIL(5.8) from dual;
 CEIL(5.8)
----------
         6
SQL>