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