ACOS (Transact-SQL)
這是一個數學函數,它會傳回其餘弦函數 (Cosine) 是指定 float 運算式的角度 (以弧度為單位);也稱為反餘弦函數 (Arccosine)。
語法
ACOS ( float_expression )
引數
- float_expression
這是一個 float 類型或能夠隱含地轉換成 float 類型的運算式,其值介於 -1 至 1 之間。這個範圍外的值會傳回 NULL,且會報告一項範圍錯誤。
傳回類型
float
範例
下列範例會傳回指定之數字的 ACOS。
SET NOCOUNT OFF;
DECLARE @cos float;
SET @cos = -1.0;
SELECT 'The ACOS of the number is: ' + CONVERT(varchar, ACOS(@cos));
以下為結果集:
---------------------------------
The ACOS of the number is: 3.14159
(1 row(s) affected)