Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回两个数字的比率的反正切值(以弧度表示)。
{ ATN2 | ATAN2 }( numeric-expression-1, numeric-expression-2 )
numeric-expression-1 要计算其反正切值的比率中的分子。
numeric-expression-2 要计算其反正切值的比率中的分母。
DOUBLE
此函数将其参数转换为 DOUBLE,并以双精度浮点运算执行计算。
SQL/2008 服务商扩充。
以下语句返回 0.52 与 0.60 的比率的反正切值。
SELECT ATAN2( 0.52, 0.60 );