ACOS (Transact-SQL)
数学函数,返回其余弦是所指定的 float 表达式的角(弧度);也称为反余弦。
语法
ACOS ( float_expression )
参数
- float_expression
类型为 float 或类型可以隐式转换为 float 的表达式,取值范围从 -1 到 1。对超过此范围的值,函数将返回 NULL 并报告域错误。
返回类型
float
示例
以下示例返回指定角的 ACOS。
SET NOCOUNT OFF;
DECLARE @angle float;
SET @angle = -1.0;
SELECT 'The ACOS of the angle is: ' + CONVERT(varchar, ACOS(@angle));
下面是结果集:
---------------------------------
The ACOS of the angle is: 3.14159
(1 row(s) affected)
请参阅
参考
数学函数 (Transact-SQL)
Functions (Transact-SQL)