Returns x raised to the power of y.
Syntax
POWER(x, y)Example
Enter values below to update the example in real time.
deposit→rate→years→future_value→savings→-- 연 복리 계산
SELECT deposit, ROUND(deposit * POWER(1 + rate, years), 0) AS future_value
FROM savings;