카테고리:숫자 함수 (삼각) 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