Outdated Version

You are viewing an older version of this section. View current production version.

ASIN

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. NULL if x is NULL or invalid.

Examples

select asin(1);
+--------------------+
| asin(1)            |
+--------------------+
| 1.5707963267948966 |
+--------------------+