Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回一个数字的正弦值。
SIN( numeric-expression )
numeric-expression 角度(以弧度为单位)。
DOUBLE
SIN 函数返回参数的正弦,参数是以弧度表示的角度。SIN 和 ASIN 函数互为逆运算。
此函数将其参数转换为 DOUBLE,以双精度浮点运算执行计算,然后返回 DOUBLE 值作为结果。
以下语句返回 0.52 的 SIN 值。
SELECT SIN( 0.52 );