ATAN2
Returns the arc tangent of y/x, using the signs to determine the quadrant.
Analyze Syntax
func.atan2(<y>, <x>)
Analyze Examples
func.atan2(1, 1)
┌────────────────────┐
│ 0.7853981633974483 │
└────────────────────┘
SQL Syntax
ATAN2(<y>, <x>)
SQL Examples
SELECT ATAN2(1, 1);
┌────────────────────┐
│ 0.7853981633974483 │
└────────────────────┘