asin

description

Syntax

DOUBLE asin(DOUBLE x) Returns the arc sine of x, or nan if x is not in the range -1 to 1.

example

  1. mysql> select asin(0.5);
  2. +---------------------+
  3. | asin(0.5) |
  4. +---------------------+
  5. | 0.52359877559829893 |
  6. +---------------------+
  7. mysql> select asin(2);
  8. +-----------+
  9. | asin(2.0) |
  10. +-----------+
  11. | nan |
  12. +-----------+

keywords

  1. ASIN