POWER

Represents the SQLite POWER(X, Y) function, which computes X raised to the power of Y.

This function is an alias for POW(X, Y).

Return

A KQLiteColumn containing the result of X^Y as a floating-point number. Returns null if either input is null. Special cases, such as raising a negative number to a noninteger power, may also result in null.

Author

MOHAMMAD AZIM ANSARI

Parameters

x

The column representing the base value.

y

The column representing the exponent value.

See also