Math Functions
SQL for CRM Analytics supports the following math functions.
-
Returns the absolute number of n as a numeric value. n can be any real numeric value in the range of -1.797e308 <= n <= 1.797e308.
-
Returns the arccosine value of radians value
{n}.{n}can be any real number in the range of -1 <={n}<= 1. Ifnullis passed as an argument,acos()returnsnull. -
Returns the arcsine value of radians value
{n}.{n}can be any real number in the range of -1 <={n}<= 1. Ifnullis passed as an argument,sin()returnsnull. -
Returns the arctan value of radians value
{n}.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,atan()returnsnull. -
Returns the nearest integer of equal or greater value to n. n can be any real numeric value in the range of -1.797e308 <= n <= 1.797e308.
-
Returns the cosine value of radians value
{n}.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,cos()returnsnull. -
Returns the degrees value of
{n}radians.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,radians()returnsnull. -
Returns the value of Euler’s number e raised to the power of n, where e = 2.71828183… The smallest value for n that does not result in 0 is 3e-324. n can be any real numeric value in the range of -1.797e308 <= n <= 700.
-
Returns the nearest integer of equal or lesser value to n. n can be any real numeric value in the range of -1.797e308<= n <= 1.797e308.
-
Returns the base e (Euler’s number) logarithm of a number n. The value n can be any positive, non-zero numeric value in the range 0 < n <= 1.797e308.
-
Returns the natural logarithm (base m) of a number n. The values m and n can be any positive, non-zero numeric value in the range 0 < m, n <= 1.797e308 and m ≠ 1.
-
Returns the base 10 logarithm of a number n. The value n can be any positive, non-zero numeric value in the range 0 < n <= 1.797e308.
-
Returns the value of constant π, where π=3.14159.
-
Returns m raised to the _n_th power. m, n can be any numeric value in the range of -1.797e308 <= m, n <= 1.797e308. Returns null if m = 0 and n < 0.
-
Returns the radians value of
{n}degrees.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,radians()returnsnull. -
Returns the value of n rounded to m decimal places. m can be negative, in which case the function returns n rounded to -m places to the left of the decimal point. If m is omitted, it returns n rounded to the nearest integer. For tie-breaking, it follows round half way from zero convention. n can be any real numeric value in the range of -1.797e308 <= n <= 1.797e308. m can be an integer value between -15 and 15, inclusive.
-
Returns 1 if the numeric value,
{n}is positive. It returns -1 if the{n}is negative, and 0 if{n}is 0.{n}can be any real number in the range of -1e308 <={n}<= 1e308. -
Returns the sine value of radians value
{n}.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,sin()returnsnull. -
Returns the square root of a number n. The value n can be any non-negative numeric value in the range of 0 <= n <= 1.797e308.
-
Returns the tan value of radians value
{n}.{n}can be any real number in the range of -1e308 <={n}<= 1e308. Ifnullis passed as an argument,tan()returnsnull. -
Returns the value of the numeric expression n truncated to m decimal places. m can be negative, in which case the function returns n truncated to -m places to the left of the decimal point. If m is omitted, it returns n truncated to the integer place. n can be any real numeric value in the range of -1.797e308 <= n <= 1.797e308. m can be an integer value between -15 and 15 inclusive.