ATN2 (Transact-SQL)
Gilt für: SQL Server Azure SQL-Datenbank Azure SQL Managed Instance Azure Synapse Analytics Analytics Platform System (PDW) SQL Analytics-Endpunkt in Microsoft Fabric Warehouse in Microsoft Fabric
Gibt den Winkel im Bogenmaß (Radiant) zwischen der positiven X-Achse und dem Strahl vom Ursprung zum Punkt (x, y) zurück, wobei "x" und "y" die Werte der beiden angegebenen float-Ausdrücke sind.
Transact-SQL-Syntaxkonventionen
Syntax
ATN2 ( float_expression , float_expression )
Argumente
float_expression
Ein Ausdruck vom Datentyp float.
Rückgabetypen
float
Beispiele
Im folgenden Beispiel wird ATN2
für die angegebenen Komponenten x
und y
berechnet.
DECLARE @x FLOAT = 35.175643, @y FLOAT = 129.44;
SELECT 'The ATN2 of the angle is: ' + CONVERT(VARCHAR, ATN2(@y, @x));
GO
Hier sehen Sie das Ergebnis.
The ATN2 of the angle is: 1.30545
(1 row(s) affected)
Siehe auch
CAST und CONVERT (Transact-SQL)
float und real (Transact-SQL)
Mathematische Funktionen (Transact-SQL)