The function ASIN returns the angle in radians, of a float numeric
expression. This trigonometric functions is also called arcsine.
SQL Syntax:
|
|
ASIN( number ) |
Number:
|
|
Any numeric expression in the range of -1.0 to 1.0. |
Escape Syntax:
|
|
{fn ASIN( number )} |
Return Type:
|
|
FLOAT |
|
|
|
Examples:
SELECT asin(1.0), {fn asin(-0.5)}
see also:
SQL Numeric Functions
SIN
|