Collections:
ASIN() - Arcsine Trigonometric Value
How to calculate the arcsine value of a given value using the ASIN() function?
✍: FYIcenter.com
ASIN(X) is a MySQL built-in function that
calculates the arcsine value of a given value.
For example:
SELECT ASIN(0), ASIN(1), ASIN(2); -- +---------+--------------------+---------+ -- | ASIN(0) | ASIN(1) | ASIN(2) | -- +---------+--------------------+---------+ -- | 0 | 1.5707963267948966 | NULL | -- +---------+--------------------+---------+
Reference information of the ASIN() function:
ASIN(X): val Returns the arc sine of X, that is, the value whose sine 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 arcsine value of the input value. Available since MySQL 4.0.
Related MySQL functions:
⇒ ATAN() - Arctangent Trigonometric Value
⇐ ACOS() - Arccosine Trigonometric Value
2023-11-15, 1007🔥, 0💬
Popular Posts:
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...