tan() 是MySQL 的数学函数。此函数用于获取给定数字的正切值。
语法
select tan(number);
参数:
number:数值。
返回:
此函数返回数字的正切值。
示例 1
Select tan(32);
输出:
mysql> Select tan(32);
+--------------------+
| tan(32) |
+--------------------+
| 0.6610060414837631 |
+--------------------+
1 row in set (0.00 sec)
示例 2
Select tan(-3);
输出:
mysql> Select tan(-3);
+--------------------+
| tan(-3) |
+--------------------+
| 0.1425465430742778 |
+--------------------+
1 row in set (0.00 sec)