CEILING() and FLOOR() : CEIL « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- CEIL
CEILING() and FLOOR()
SQL>
Syntax: CEIL(<numeric expression>) FLOOR(<numeric expression>)
SQL>
SQL> SELECT
2 CEIL(109.19) ceil_val,
3 FLOOR(109.19) floor_val from dual;
CEIL_VAL FLOOR_VAL
---------- ----------
110 109
Related examples in the same category