Provide the arcsine of a number.
| SELECT ASIN(0.25); |
The ASIN() function computes the arcsine of a number.
The provided number must fall within the range of -1 to 1; otherwise, the function returns NULL.
| ASIN(number) |
|
Parameter |
Description |
|
number |
Mandatory. A numerical value is required. |
| Works in: | From MySQL 4.0 |
Provide the arcsine of a number.
| SELECT ASIN(–0.8); |