ABS
Returns the absolute (positive) value of the specified numeric expression. Syntax- numeric_expression The expression of an indeterminate numeric data type except for the bit data type.
ACOS
Returns the arc cosine, the angle in radians whose cosine is the specified float expression. Syntax- float_expression The float expression that specifies the cosine of the angle to be returned. Values outside the range from -1 to 1 return null.
ASIN
Returns the arc sine, the angle in radians whose sine is the specified float expression. Syntax- float_expression The float expression that specifies the sine of the angle to be returned. Values outside the range from -1 to 1 return null.
ATAN
Returns the arc tangent, the angle in radians whose tangent is the specified float expression. Syntax- float_expression The float expression that specifies the tangent of the angle to be returned.
ATN2
Returns the angle in radians between the positive x-axis and the ray from the origin to the point (y, x) where x and y are the values of the two specified float expressions. Syntax- float_expression1 The float expression that is the y-coordinate.
- float_expression2 The float expression that is the x-coordinate.
CEILING
Returns the smallest integer greater than or equal to the specified numeric expression. Syntax- numeric_expression The expression of an indeterminate numeric data type except for the bit data type.
COS
Returns the trigonometric cosine of the specified angle in radians in the specified expression. Syntax- float_expression The float expression of the specified angle in radians.
COT
Returns the trigonometric cotangent of the angle in radians specified by float_expression. Syntax- float_expression The float expression of the angle in radians.
DEGREES
Returns the angle in degrees for the angle specified in radians. Syntax- numeric_expression The angle in radians, an expression of an indeterminate numeric data type except for the bit data type.
EXP
Returns the exponential value of the specified float expression. For example, EXP(LOG(20)) is 20. Syntax- float_expression The float expression.
EXPR
Evaluates the expression. Syntax- expression The expression. Operators allowed are
+, -, \*, /, ==, !=, >, <, >=, and <=.
FLOOR
Returns the largest integer less than or equal to the numeric expression. Syntax- numeric_expression The expression of an indeterminate numeric data type except for the bit data type.
GREATEST
Returns the greatest of the supplied integers. SyntaxHEX
Returns a the equivalent hex for the input value.Syntax
- value: A string or numerical value to be converted into hex.
LEAST
Returns the least of the supplied integers.LOG
Returns the natural logarithm of the specified float expression. Syntax- float_expression The float expression.
- base The optional integer argument that sets the base for the logarithm.
LOG10
Returns the base-10 logarithm of the specified float expression. Syntax- float_expression The expression of type float.
MOD
Returns the integer value associated with the remainder when dividing the dividend by the divisor. Syntax- dividend The number to take the modulus of.
- divisor The number to divide the dividend by when determining the modulus.
NEGATE
Returns the opposite to the real number input. Syntax- real_number The real number to find the opposite of.
PI
Returns the constant value of pi. SyntaxPOWER
Returns the value of the specified expression raised to the specified power. Syntax- float_expression The float expression.
- y The power to raise float_expression to.
RADIANS
Returns the angle in radians of the angle in degrees. Syntax- float_expression The degrees of the angle as a float expression.
RAND
Returns a pseudorandom float value from 0 through 1, exclusive. Syntax- seed The optional integer expression that specifies the seed value. If seed is not specified, a seed value at random will be assigned.
ROUND
Returns the numeric value rounded to the specified length or precision. Syntax- numeric_expression The expression of a numeric data type.
- length The optional precision to round the numeric expression to. When this is ommitted, the default behavior will be to round to the nearest whole number.
- function The optional type of operation to perform. When the function parameter is omitted or has a value of 0 (default), numeric_expression is rounded. When a value other than 0 is specified, numeric_expression is truncated.
SIGN
Returns the positive sign (1), 0, or negative sign (-1) of the specified expression. Syntax- numeric_expression The expression of an indeterminate data type except for the bit data type.
SIN
Returns the trigonometric sine of the angle in radians. Syntax- float_expression The float expression specifying the angle in radians.
SQRT
Returns the square root of the specified float value. Syntax- float_expression The expression of type float.
SQUARE
Returns the square of the specified float value. Syntax- float_expression The expression of type float.
TAN
Returns the tangent of the input expression. Syntax- float_expression The expression of type float.
TRUNC
Returns the supplied decimal number truncated to have the supplied decimal precision. Syntax- decimal_number The decimal value to truncate.
- precision The number of decimal places to truncate the decimal number to.