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, 1025🔥, 0💬
Popular Posts:
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...