Oracle POWER Function


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

A few examples of the POWER function.


Copy this code and paste it in your HTML
  1. SELECT POWER(4, 2) AS POWER_TEST FROM dual;
  2.  
  3. SELECT POWER(5, 3) AS POWER_TEST FROM dual;
  4.  
  5. SELECT POWER(-8, 5) AS POWER_TEST FROM dual;
  6.  
  7. SELECT POWER(6, -3) AS POWER_TEST FROM dual;
  8.  
  9. SELECT POWER(12.3, 3) AS POWER_TEST FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.