Use and ATAN and ATAN2 : ATAN : Math SQL / MySQL


SQL / MySQL » Math » ATAN »

 

Use and ATAN and ATAN2



/*
mysql> select ATAN(1, 2);
+------------------+
| ATAN(1, 2)       |
+------------------+
| 0.46364760900081 |
+------------------+
1 row in set (0.00 sec)

mysql> select ATAN2(1, 2);
+------------------+
| ATAN2(1, 2)      |
+------------------+
| 0.46364760900081 |
+------------------+
1 row in set (0.00 sec)


*/  
select ATAN(12);
select ATAN2(12);
           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

SQL / MySQL

 Navioo Math
» ATAN