Pow « Math Functions « PostgreSQL






1.pow(x, y): Returns value of x to the exponential power of y
2.pow(2.0, 3.0) AS 'two cubed', pow(2.0, 2.0) AS 'two squared', pow(2.0, 1.0) AS 'just two'