Oracle ABS Function


/ Published in: SQL
Save to your folder(s)

A few examples of the ABS function


Copy this code and paste it in your HTML
  1. SELECT ABS(-12) AS Absolute
  2. FROM DUAL;
  3.  
  4.  
  5. SELECT ABS(-12.7) AS Absolute
  6. FROM DUAL;
  7.  
  8.  
  9. SELECT ABS(21) AS Absolute
  10. FROM DUAL;

URL: http://www.databasestar.com/oracle-abs/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.