Syntax: ROUND(,) : ROUND « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- ROUND
Syntax: ROUND(,)
SQL>
SQL>
SQL> SELECT ROUND(109.09 ,1) rounded from dual;
ROUNDED
----------
109.1
Related examples in the same category