カテゴリ:数値関数 (三角関数) SIN¶ 引数のサインを計算します。引数はラジアンで表現する必要があります。 構文¶ CopyExpandSIN( <input_expr> ) Show lessSee moreScroll to top 引数¶ input_exprThe value or expression to operate on. The value must be in radians, not degrees. The data type must be FLOAT. 戻り値¶ This function returns a value of type FLOAT. 例¶ CopyExpandSELECT SIN(0), SIN(PI()/3), SIN(RADIANS(90)); Show lessSee moreScroll to top Expand+--------+--------------+------------------+ | SIN(0) | SIN(PI()/3) | SIN(RADIANS(90)) | |--------+--------------+------------------| | 0 | 0.8660254038 | 1 | +--------+--------------+------------------+ Show lessSee moreScroll to top