カテゴリ:

数値関数 (三角関数)

ASIN

引数の逆正弦(アークサイン)を計算します。結果は、 [-pi/2, pi/2] の間の数値になります。

構文

ASIN( <input_expr> )
Copy

引数

input_expr

The value or expression to operate on. Must be greater than or equal to -1.0 and less than or equal to +1.0. The data type must be FLOAT.

戻り値

This function returns a value of type FLOAT.

[-pi/2, pi/2] の範囲内の、ラジアン(度ではない)でアークサインを返します。

SELECT ASIN(0), ASIN(0.5), ASIN(1);
Copy
+---------+--------------+-------------+
| ASIN(0) |    ASIN(0.5) |     ASIN(1) |
|---------+--------------+-------------|
|       0 | 0.5235987756 | 1.570796327 |
+---------+--------------+-------------+