Returns the sine of a number.
SIN( numeric-expression )
numeric-expression The angle, in radians.
DOUBLE
The SIN function returns the sine of the argument, where the argument is an angle expressed in radians. The SIN and ASIN functions are inverse operations.
This function converts its argument to DOUBLE, performs the computation in double-precision floating point, and returns a DOUBLE as the result.
SQL/2003 Vendor extension.
The following statement returns the SIN value of 0.52.
SELECT SIN( 0.52 ); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |