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, 825🔥, 0💬
Popular Posts:
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...