개인적인 정리

ORACLE COS() 본문

DB/ORACLE

ORACLE COS()

yeon.Biju 2020. 3. 26. 10:24

오라클 cos()

 

COS returns the cosine of n (an angle expressed in radians).

 

This function takes as an argument any numeric data type or any nonnumeric data type that can be implicitly converted to a numeric data type. If the argument is BINARY_FLOAT, then the function return BINARY_DOUBLE.  Otherwise the function returns the same numeric data type as the argument.

 

 

SQL > SELECT COS(180* 3.14159265359) FROM DUAL ;

   --> 1

 

 

'DB > ORACLE' 카테고리의 다른 글

ORACLE DECODE()  (0) 2020.03.26
ORACLE CURRENT_TIMESTAMP()  (0) 2020.03.26
ORACLE CURRENT_DATE()  (0) 2020.03.26
ORACLE COUNT()  (0) 2020.03.26
ORACLE CONCAT()  (0) 2020.03.25
ORACLE COLLECT()  (0) 2020.03.25
ORACLE COALESCE()  (0) 2020.03.25
ORACLE CHR()  (0) 2020.03.25
Comments