Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回一个数字的平方根。
SQRT( numeric-expression )
numeric-expression 要计算其平方根的数字。
DOUBLE
此函数将其参数转换为 DOUBLE,以双精度浮点运算执行计算,然后返回 DOUBLE 值作为结果。
SQL/2008 SQRT 函数是可选 SQL/2008 语言功能 T621 "增强的数字函数" 的一部分。
以下语句返回值 3。
SELECT SQRT( 9 );