POW()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
See POWER().
USAGE
POW(base, exponent)
Argument Name | Description |
---|---|
| The numeric base |
| The numeric exponent |
EXAMPLES
SELECT POW(2, 3), POW(1, -2);
+-----------+------------+
| POW(2, 3) | POW(1, -2) |
+-----------+------------+
| 8 | 1 |
+-----------+------------+