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, 1420🔥, 0💬
Popular Posts:
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...