Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » SQL Anywhere 服务器 - SQL 参考 » 使用 SQL » SQL 函数 » SQL 函数 (A-D)

 

ASIN 函数 [Numeric]

返回一个数字的反正弦值(以弧度表示)。

语法
ASIN( numeric-expression )
参数
  • numeric-expression   角度的正弦值。

返回值

DOUBLE

注释

SIN 和 ASIN 函数互为逆运算。

此函数将其参数转换为 DOUBLE,并以双精度浮点执行计算。

另请参见
标准和兼容性
  • SQL/2003   服务商扩充。

示例

以下语句返回 0.52 的反正弦值。

SELECT ASIN( 0.52 );