ABS(x): Returns the absolute value of x : ABS « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- ABS
ABS(x): Returns the absolute value of x
SQL> --ABS(x): Returns the absolute value of x.
SQL>
SQL> select ABS(10) from dual;
ABS(10)
----------
10
Related examples in the same category