Square root : Exp « Math « SQL / MySQL






Square root

/*
mysql> select SQRT(10);
+-----------------+
| SQRT(10)        |
+-----------------+
| 3.1622776601684 |
+-----------------+
1 row in set (0.01 sec)


*/  
select SQRT(10);
           
       








Related examples in the same category