DEGREES (Transact-SQL)
适用于: SQL Server Azure SQL 数据库 Azure SQL 托管实例 Azure Synapse Analytics 分析平台系统 (PDW) Microsoft Fabric 中的 SQL 分析端点 Microsoft Fabric 中的仓库
此函数返回按弧度指定的角的相应角度数。
语法
DEGREES ( numeric_expression )
参数
numeric_expression
精确数值或近似数值数据类型类别的表达式。
返回类型
返回类型取决于 numeric_expression 的输入类型:
输入类型 | 返回类型 |
---|---|
float、real | float |
decimal(p, s) | decimal(38, s) |
int、smallint、tinyint | int |
bigint | bigint |
money、 smallmoney | money |
bit | float |
如果结果与返回类型不匹配,将发生算术溢出错误。
示例
此示例返回按 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)