The following example uses POWER() to display 2 raised to the power 1 and 3, respectively: SQL> SELECT POWER(2, 1), POWER(2, 3) FROM dual;POWER(2,1) POWER(2,3)---------- ---------- 2 8SQL>