SQL Eval Function Math
Provides methods for trigonometric, and other common mathematical functions.
| Name | Description | Example |
|---|---|---|
| Math_BigMul(a, b) | Produces the full product of two 32-bit numbers. | Try it |
| Math_Cosh(value) | Returns the hyperbolic cosine of the specified angle. | Try it |
| Math_CubeRoot(value) | Returns the cube root of a specified number. | Try it |
| Math_IEEERemainder(x, y) | Returns the remainder resulting from the division of a specified number by another specified number. | Try it |
| Math_NthRoot(value, nth) | Returns the nth root of a specified number. | Try it |
| Math_RemainderInt32(a, b) | Returns the remainder of two 32-bit signed integers. | Try it |
| Math_RemainderInt64(a, b) | Returns the remainder of two 64-bit signed integers. | Try it |
| Math_Sinh(value) | Returns the hyperbolic sine of the specified angle. | Try it |
| Math_Tanh(value) | Returns the hyperbolic tangent of the specified angle. | Try it |