oracle函数 sqrt(x)

【功能】返回x的平方根

【参数】x数字型表达式

【返回】数字

 

【示例】

  select sqrt(64),sqrt(10) from dual;

返回:8 , 3.16227766

原文地址:https://www.cnblogs.com/fanweisheng/p/11120152.html