COS (Transact-SQL)
這個數學函數會傳回指定運算式中指定角度的三角餘弦函數 (以弧度為單位)。
適用於:SQL Server (SQL Server 2008 透過目前版本)、Windows Azure SQL 資料庫 (初始版本,透過目前版本)。 |
語法
COS ( float_expression )
引數
- float_expression
這是一個 float 類型的運算式。
傳回類型
float
範例
下列範例會傳回特定角度的 COS。
DECLARE @angle float;
SET @angle = 14.78;
SELECT 'The COS of the angle is: ' + CONVERT(varchar,COS(@angle));
GO
以下為結果集:
The COS of the angle is: -0.599465
(1 row(s) affected)