ceiling calculates the smallest integer greater than or equal to x.
ceiling returns a 32-bit integer.
SQL> select ceiling (12.3456), ceiling (-12.3456), ceiling (0.513513); callret callret callret INTEGER INTEGER INTEGER _______________________________________________________________________________ 13 -12 1 1 Rows. -- 4 msec.