개인적인 정리

ORACLE ATAN2() 본문

DB/ORACLE

ORACLE ATAN2()

yeon.Biju 2020. 3. 24. 08:51

오라클 ATAN2()

 

ATAN2 returns the arc tangent of n1 and n2. The argument n1 can be in an unbounded range and returns a value in the range of -pi to pi, depending on the signs of n1 and n2, expressed in radians.

 

SQL > SELECT ATAN2(-2, 1) FROM DUAL ;

   --> -1.10714871779409

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

ORACLE CHR()  (0) 2020.03.25
ORACLE CEIL()  (0) 2020.03.24
ORACLE CAST()  (0) 2020.03.24
ORACLE AVG()  (0) 2020.03.24
ORACLE ATAN()  (0) 2020.03.24
ORACLE ASIN()  (0) 2020.03.24
ORACLE ASCIISTR()  (0) 2020.03.24
ORACLE ASCII() 함수  (0) 2020.03.23
Comments