TAN(X)
Returns the tangent of X, where X is given in radians.
SELECT TAN(0.7853981633974483); +-------------------------+ | TAN(0.7853981633974483) | +-------------------------+ | 0.9999999999999999 | +-------------------------+ SELECT TAN(PI()); +-----------------------+ | TAN(PI()) | +-----------------------+ | -1.22460635382238e-16 | +-----------------------+ SELECT TAN(PI()+1); +-----------------+ | TAN(PI()+1) | +-----------------+ | 1.5574077246549 | +-----------------+ SELECT TAN(RADIANS(PI())); +--------------------+ | TAN(RADIANS(PI())) | +--------------------+ | 0.0548861508080033 | +--------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/tan/