power(a dp, b dp) a raised to the power of b : Power « Math Functions « PostgreSQL






power(a dp, b dp) a raised to the power of b


postgres=# --power(a dp, b dp) a raised to the power of b
postgres=# select power(9.0, 3.0);
        power
----------------------
 729.0000000000000000
(1 row)

postgres=#
           
       








Related examples in the same category

1.power(a numeric, b numeric) numeric a raised to the power of b
2.Power operator
3.CAST(2 AS double precision) ^ CAST(3 AS double precision)