We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e12d97 commit 62b3769Copy full SHA for 62b3769
1 file changed
docs/t-sql/functions/atn2-transact-sql.md
@@ -48,14 +48,14 @@ An [expression](../../t-sql/language-elements/expressions-transact-sql.md) of da
48
The following example calculates the `ATN2` for the specified `x` and `y` components.
49
50
```sql
51
-DECLARE @x float = 35.175643, @y float = 129.44;
52
-SELECT 'The ATN2 of the angle is: ' + CONVERT(varchar, ATN2(@y, @x));
+DECLARE @x FLOAT = 35.175643, @y FLOAT = 129.44;
+SELECT 'The ATN2 of the angle is: ' + CONVERT(VARCHAR, ATN2(@y, @x));
53
GO
54
```
55
56
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]
57
58
-```sql
+```
59
The ATN2 of the angle is: 1.30545
60
(1 row(s) affected)
61
0 commit comments