Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
ASIN
On this page
The ASIN() function returns the arc sine of x in radians, or NULL if x is not in the range [-1, 1].
Syntax
ASIN (x)
Arguments
-
x: the argument
Return Type
Float or double.
Examples
SELECT ASIN(1);
+--------------------+
| ASIN(1) |
+--------------------+
| 1.5707963267948966 |
+--------------------+Last modified: