/ Published in: SQL
A few examples of the EXP function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--Example 1 SELECT EXP(1) FROM dual; --Example 2 SELECT EXP(2) FROM dual; --Example 3 SELECT EXP(5) FROM dual; --Example 4 SELECT EXP(4.2) FROM dual; --Example 5 SELECT EXP(-1) FROM dual;
URL: http://www.databasestar.com/oracle-exp/