select ceil( -1.99 )from dual; : CEIL « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- CEIL
select ceil( -1.99 )from dual;
SQL>
SQL> select ceil( -1.99 )from dual;
CEIL(-1.99)
-----------
-1
1 row selected.
SQL>
SQL>
SQL>
SQL> --
Related examples in the same category