We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 478ecad commit 0bb3054Copy full SHA for 0bb3054
1 file changed
docs/t-sql/functions/cot-transact-sql.md
@@ -44,9 +44,9 @@ An [expression](../../t-sql/language-elements/expressions-transact-sql.md) of ty
44
This example returns the `COT` value for the specific angle:
45
46
```sql
47
-DECLARE @angle float;
+DECLARE @angle FLOAT;
48
SET @angle = 124.1332;
49
-SELECT 'The COT of the angle is: ' + CONVERT(varchar,COT(@angle));
+SELECT 'The COT of the angle is: ' + CONVERT(VARCHAR, COT(@angle));
50
GO
51
```
52
0 commit comments