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, 1016🔥, 0💬
Popular Posts:
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...