We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8fde7b commit 8449c98Copy full SHA for 8449c98
1 file changed
docs/t-sql/functions/acos-transact-sql.md
@@ -49,14 +49,14 @@ This example returns the `ACOS` value of the specified number.
49
50
```sql
51
SET NOCOUNT OFF;
52
-DECLARE @cos float;
+DECLARE @cos FLOAT;
53
SET @cos = -1.0;
54
-SELECT 'The ACOS of the number is: ' + CONVERT(varchar, ACOS(@cos));
+SELECT 'The ACOS of the number is: ' + CONVERT(VARCHAR, ACOS(@cos));
55
```
56
57
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]
58
59
-```sql
+```
60
---------------------------------
61
The ACOS of the number is: 3.14159
62
0 commit comments