Collections:
ACOS() - Arccosine Trigonometric Value
How to calculate the arccosine value of a given value using the ACOS() function?
✍: FYIcenter.com
ACOS(X) is a MySQL built-in function that
calculates the arccosine value of a given value.
For example:
SELECT ACOS(0), ACOS(1), ACOS(2); -- +--------------------+---------+---------+ -- | ACOS(0) | ACOS(1) | ACOS(2) | -- +--------------------+---------+---------+ -- | 1.5707963267948966 | 0 | NULL | -- +--------------------+---------+---------+
Reference information of the ACOS() function:
ACOS(X): val Returns the arc cosine of X, that is, the value whose cosine is X. Returns NULL if X is not in the range -1 to 1. Arguments, return value and availability: X: Required. The input value. val: Return value. The arccosine value of the input value. Available since MySQL 4.0.
Related MySQL functions:
⇒ ASIN() - Arcsine Trigonometric Value
2023-11-15, 1727🔥, 0💬
Popular Posts:
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...