Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

CEIL(x)

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>