We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8b7fde commit fb0fa40Copy full SHA for fb0fa40
1 file changed
docs/t-sql/functions/radians-transact-sql.md
@@ -47,7 +47,7 @@ RADIANS ( numeric_expression )
47
### A. Using RADIANS to show 0.0
48
The following example returns a result of `0.0` because the numeric expression to convert to radians is too small for the `RADIANS` function.
49
50
-```
+```sql
51
SELECT RADIANS(1e-307)
52
GO
53
```
@@ -63,7 +63,7 @@ GO
63
### B. Using RADIANS to return the equivalent angle of a float expression.
64
The following example takes a `float` expression and returns the `RADIANS` of the specified angle.
65
66
67
-- First value is -45.01.
68
DECLARE @angle FLOAT
69
SET @angle = -45.01
0 commit comments