1power(x1, x2) - raise x1 to the power of x2
2Synonyms: pow
3Example:
4  > SELECT power(2, 3) FROM src LIMIT 1;
5  8
6