Collections:
COT() - Cotangent Trigonometric Value
How to calculate the cotangent trigonometric value of a given angle using the COT() function?
✍: FYIcenter.com
COT(X) is a MySQL built-in function that
calculates the cotangent trigonometric value of a given angle in radians.
For example:
SELECT COT(0.1), COT(1.57), COT(3.14); -- +-------------------+-----------------------+--------------------+ -- | COT(0.1) | COT(1.57) | COT(3.14) | -- +-------------------+-----------------------+--------------------+ -- | 9.966644423259238 | 0.0007963269632231926 | -627.8823975869132 | -- +-------------------+-----------------------+--------------------+
Reference information of the COT() function:
COT(X): val Returns the cotangent of X, where X is given in radians. Arguments, return value and availability: X: Required. The input angle in radians. val: Return value. The cotangent of X. Available since MySQL 4.0.
Related MySQL functions:
⇒ DEGREES() - Radians to Degrees
⇐ COS() - Cosine Trigonometric Value
2023-11-15, 1229🔥, 0💬
Popular Posts:
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...