select abs(-70 * 415) "Using an expression" : ABS « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- ABS
select abs(-70 * 415) "Using an expression"
SQL>
SQL>
SQL> select abs(-70 * 415) "Using an expression"
2 from dual;
Using an expression
-------------------
29050
1 row selected.
SQL> --
Related examples in the same category