Last updated 2 months ago
SQL Server
Azure Synapse Analytics
Function that returns the arctangent of two parameters ().
Math.atan2( expression_1, expression_2 )
expression_1and expression_2: Numeric expressions.
expression_1
expression_2
Numeric expression between āĻ-\piāĻ and Ļ\piĻ.
CREATE OR REPLACE FUNCTION compute_atan2(x float, y float) RETURNS float LANGUAGE JAVASCRIPT AS $$ return Math.atan2(X, Y); $$ ; SELECT COMPUTE_ATAN2(7.5, 2);
ATAN2(7.5, 3) | ------------------+ 1.310193935|
No issues were found.
No related EWIs.