Oracle EXP Function


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

A few examples of the EXP function.


Copy this code and paste it in your HTML
  1. --Example 1
  2. SELECT EXP(1) FROM dual;
  3.  
  4. --Example 2
  5. SELECT EXP(2) FROM dual;
  6.  
  7. --Example 3
  8. SELECT EXP(5) FROM dual;
  9.  
  10. --Example 4
  11. SELECT EXP(4.2) FROM dual;
  12.  
  13. --Example 5
  14. SELECT EXP(-1) FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.