The function SIN returns the trigonometric sine of the specified angle, in
radians.
SQL Syntax:
|
|
SIN( number ) |
Number:
|
|
Any numeric expression. |
Escape Syntax:
|
|
{fn SIN( number )} |
Return Type:
|
|
FLOAT |
|
|
|
Examples:
SELECT SIN(PI()), {fn sin(0.0)}
see also:
SQL Numeric Functions
ACOS
|