Collections:
TAN() - Tangent Trigonometric Value
How to calculate the tangent trigonometric value of a given angle using the TAN() function?
✍: FYIcenter.com
TAN(X) is a MySQL built-in function that
calculates the tangent trigonometric value of a given angle in radians.
For example:
SELECT TAN(0.1), TAN(1.57), TAN(3.14); -- +---------------------+--------------------+------------------------+ -- | TAN(0.1) | TAN(1.57) | TAN(3.14) | -- +---------------------+--------------------+------------------------+ -- | 0.10033467208545055 | 1255.7655915007897 | -0.0015926549364072232 | -- +---------------------+--------------------+------------------------+
Reference information of the TAN() function:
TAN(X): val Returns the tangent of X, where X is given in radians. Arguments, return value and availability: X: Required. The input angle in radians. val: Return value. The tangent of X. Available since MySQL 4.0.
Related MySQL functions:
⇒ TRUNCATE() - Truncating to Decimal Place
2023-11-14, 1088🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
Where to find answers to frequently asked questions on Conditional Statements and Loops in SQL Serve...
Where to find answers to frequently asked questions on Storage Engines: MyISAM, InnoDB and BDB in My...