DEGREES (Transact-SQL)
針對以弧度指定的角度,傳回對應的角度。
語法
DEGREES ( numeric_expression )
傳回碼值
傳回與 numeric_expression 相同的類型。
範例
下列範例會傳回 PI/2 弧度中的角度度數。
SELECT 'The number of degrees in PI/2 radians is: ' +
CONVERT(varchar, DEGREES((PI()/2)));
GO
以下為結果集:
The number of degrees in PI/2 radians is 90
(1 row(s) affected)