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 arithmetic, and returns a DOUBLE as the result.
SQL/2008 Vendor extension.
The following statement returns the SIN value of 0.52.
SELECT SIN( 0.52 ); |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |